예제 #1
0
 @Test
 public void testGetModuleLocations() {
   CVSSCM scm =
       new CVSSCM(
           Arrays.asList(new ModuleLocationImpl(CVSROOT, MODULES, BRANCH, false, LOCAL_DIR)),
           null,
           true,
           false,
           null,
           false);
   // there are 3 modules
   assertFalse(scm.isFlatten());
   assertTrue(scm.isLegacy());
   assertEquals(scm.getModuleLocations().length, 1);
   assertEquals(scm.getAllModules().length, 3);
 }