Esempio n. 1
0
 @Test
 public void getURIToContext_ContextType_UNKOWN() {
   Publisher publisherUnkown = mock(Publisher.class);
   when(publisherUnkown.getContextType()).thenReturn(ContextType.UNKNOWN);
   String uriToContext = uriBuilderTestObject.getURIToContext(publisherUnkown);
   assertEquals("Wrong URI with unkown type", testContextPathUri + "/url/UNKOWN/0", uriToContext);
 }
Esempio n. 2
0
 @Test
 public void getURIToContext_ContextType_COURSE() {
   String uriToContext = uriBuilderTestObject.getURIToContext(publisher);
   assertEquals(
       "Wrong URI to context",
       testContextPathUri + "/url/RepositoryEntry/" + contextId,
       uriToContext);
 }