Package com.alexecollins.vbox.core.patch

Examples of com.alexecollins.vbox.core.patch.ArchPatch


public class PatchDefinitionTask extends AbstractTask {

  private List<Patch> patches = new ArrayList<Patch>();

  public ArchPatch createArchPatch() {
    ArchPatch patch = new ArchPatch();
    patches.add(patch);
    return patch;
  }
View Full Code Here


    Clean clean = new Clean(getWork(), getBox());
    clean.call();
    clean.call(); // idempotent
    assertFalse("vbox exists", getTarget().exists());

    new ArchPatch().apply(getBox());

    Create create = new Create(getWork(), getBox());
    create.call();
    assertTrue("vbox exists", getTarget().exists());
    create.call(); // snapshot
View Full Code Here

TOP

Related Classes of com.alexecollins.vbox.core.patch.ArchPatch

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.