X-Git-Url: http://wamblee.org/gitweb/?a=blobdiff_plain;f=impl%2Fsrc%2Ftest%2Fjava%2Forg%2Fwamblee%2Fxmlrouter%2Fimpl%2FConfigImplTest.java;h=c7b1d9c8660d2d95849411741734017d20620ba0;hb=3b2c669b25bfcb5a3c3f06ff9180d85143bebb2a;hp=9925c0b74a7637aa6065cca0cd7a49a7f597474f;hpb=e95d0100812a1d7461a2458c8bd2c845d1fc7816;p=xmlrouter diff --git a/impl/src/test/java/org/wamblee/xmlrouter/impl/ConfigImplTest.java b/impl/src/test/java/org/wamblee/xmlrouter/impl/ConfigImplTest.java index 9925c0b..c7b1d9c 100644 --- a/impl/src/test/java/org/wamblee/xmlrouter/impl/ConfigImplTest.java +++ b/impl/src/test/java/org/wamblee/xmlrouter/impl/ConfigImplTest.java @@ -23,7 +23,6 @@ import java.util.concurrent.atomic.AtomicLong; import org.junit.Before; import org.junit.Test; import org.wamblee.xmlrouter.common.Id; -import org.wamblee.xmlrouter.config.Config; import org.wamblee.xmlrouter.config.Identifiable; public class ConfigImplTest { @@ -52,7 +51,7 @@ public class ConfigImplTest { } public static final class MyTypeConfig extends ConfigImpl { - public MyTypeConfig(Id aId) { + public MyTypeConfig(String aId) { super(MyType.class, aId); } @@ -72,7 +71,7 @@ public class ConfigImplTest { @Before public void setUp() { sequence = new AtomicLong(1L); - config = new MyTypeConfig(new Id(CONFIG_TYPE)); + config = new MyTypeConfig(CONFIG_TYPE); } @Test @@ -118,10 +117,10 @@ public class ConfigImplTest { @Test public void testEquals() { - Config config1 = new MyTypeConfig(new Id(CONFIG_TYPE)); + Config config1 = new MyTypeConfig(CONFIG_TYPE); assertFalse(config1.equals(null)); assertFalse(config1.equals("hello")); - Config config2 = new MyTypeConfig(new Id(CONFIG_TYPE)); + Config config2 = new MyTypeConfig(CONFIG_TYPE); assertEquals(config1, config2); assertEquals(config1.hashCode(), config2.hashCode()); @@ -148,7 +147,7 @@ public class ConfigImplTest { testAdd(); assertEquals(2, config.values().size()); MyTypeConfig copy = new MyTypeConfig(config); - assertEquals(config.getId(), config.getId()); + assertEquals(config.getPrefix(), copy.getPrefix()); assertEquals(config, copy); // verify the copy is not shallow