Config no longer implements Identifiable because this was in violation of the contrac...
[xmlrouter] / impl / src / test / java / org / wamblee / xmlrouter / impl / XMLRouterFunctionTest.java
index e2e08b4a0e7b43c941d0711d81d1e8c7385de639..cc663438a2b5853727b6af25dab2c7a3607a383e 100644 (file)
@@ -29,7 +29,6 @@ import org.junit.Test;
 import org.wamblee.general.SystemClock;
 import org.wamblee.xmlrouter.common.Id;
 import org.wamblee.xmlrouter.config.DocumentType;
-import org.wamblee.xmlrouter.config.RouterConfig;
 import org.wamblee.xmlrouter.config.Transformation;
 import org.wamblee.xmlrouter.listener.EventInfo;
 import org.wamblee.xmlrouter.listener.EventListener;
@@ -53,7 +52,7 @@ public class XMLRouterFunctionTest {
         EventListener logListener = new LoggingEventListener(Level.INFO);
         listener = spy(logListener);
         routerService = new XMLRouter(new SystemClock(), config, listener);
-        configService = new XMLRouterConfigService(config);
+        configService = new XMLRouterConfigService("app", config);
 
         source1 = mock(DOMSource.class);
         source2 = mock(DOMSource.class);
@@ -63,6 +62,7 @@ public class XMLRouterFunctionTest {
         DocumentType type = mock(DocumentType.class);
         when(type.isInstance(any(DOMSource.class))).thenReturn(true);
         when(type.getName()).thenReturn(aType);
+        when(type.getId()).thenReturn(new Id<DocumentType>(aType));
         RouterConfig routerConfig = configService.emptyConfig("app");
         routerConfig.documentTypeConfig().add(type);
         return routerConfig;