Further unit tests: CFB and Delta
[cfb.git] / test / net / jaekl / cfb / CfbBundleMock.java
1 package net.jaekl.cfb;
2
3 import java.util.Locale;
4
5 public class CfbBundleMock extends CfbBundle {
6         public CfbBundleMock() 
7         {
8                 super();
9                 synchronized(CfbBundle.class){
10                         m_bundleMap.put(Locale.getDefault(), this);
11                 }
12         }
13         
14         @Override 
15         public String get(String key, Object... arguments)
16         {
17                 return fallbackGet(key, arguments);
18         }
19 }