1 37 46 package net.sourceforge.cruisecontrol.bootstrappers; 47 48 import net.sourceforge.cruisecontrol.CruiseControlException; 49 import net.sourceforge.cruisecontrol.sourcecontrols.AccurevTest; 50 51 public class AccurevBootstrapperTest extends AccurevTest { 52 57 public void testAccurevBootstrapper() throws CruiseControlException { 58 AccurevBootstrapper bootstrapper = new AccurevBootstrapper(); 59 fake("accurev_synctime.txt", 0); 60 fake("accurev_keep.txt", 0); 61 fake("accurev_update.txt", 0); 62 bootstrapper.setRunner(getMockRunner()); 63 bootstrapper.setVerbose(true); 64 bootstrapper.setSynctime(true); 65 bootstrapper.setKeep(true); 66 bootstrapper.validate(); 67 bootstrapper.bootstrap(); 68 } 69 } 70 | Popular Tags |