use of org.apache.maven.scm.provider.tfs.TfsScmProviderRepository in project maven-scm by apache.
the class TfsStatusCommandTest method testCommandline.
public void testCommandline() throws Exception {
TfsScmProviderRepository repo = getScmProviderRepository();
Commandline cmd = new TfsStatusCommand().createCommand(repo, getScmFileSet()).getCommandline();
String expected = "tf status -login:user,password -workspace:workspace -recursive -format:detailed " + repo.getServerPath();
assertCommandLine(expected, getWorkingDirectory(), cmd);
}
Aggregations