Package net.sourceforge.fullsync

Examples of net.sourceforge.fullsync.Action


    super.fileChangeInSource();
  }
  @Override
  @Test
  public void fileChangeInDestination() throws Exception {
    expectation.put("changeDestination.txt", new Action(Action.UnexpectedChangeError, Location.Destination, BufferUpdate.None, ""));
    super.fileChangeInDestination();
  }
View Full Code Here


    super.fileChangeInDestination();
  }
  @Override
  @Test
  public void fileNewInDestination() throws Exception {
    expectation.put("newInDestination.txt", new Action(Action.Nothing, Location.None, BufferUpdate.None, ""));
    super.fileNewInDestination();
  }
View Full Code Here

    super.fileNewInDestination();
  }
  @Override
  @Test
  public void fileToDirSource() throws Exception {
    expectation.put("fileToDirSource.txt", new Action(Action.DirHereFileThereError, Location.Source, BufferUpdate.None, ""));
    super.fileToDirSource();
  }
View Full Code Here

    super.fileToDirSource();
  }
  @Override
  @Test
  public void fileToDirDestination() throws Exception {
    expectation.put("fileToDirDestination.txt", new Action(Action.DirHereFileThereError, Location.Destination, BufferUpdate.None, ""));
    super.fileToDirDestination();
  }
View Full Code Here

    super.fileToDirDestination();
  }
  @Override
  @Test
  public void dirInSync() throws Exception {
    expectation.put("inSync", new Action(Action.Nothing, Location.None, BufferUpdate.None, ""));
    super.dirInSync();
  }
View Full Code Here

TOP

Related Classes of net.sourceforge.fullsync.Action

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.