public void CanUploadOnlyWhenUniqueWithLongOptions() { // Arrange using (var tc = new TestContext(_output)) { var initial = tc.ExecuteCommand( new[] { "-s", tc.ConnectionString, "-c", tc.Container, "-f", tc.PathFormat }, tc.Content); // Act var actual = tc.ExecuteCommand( new[] { "--connection-string", tc.ConnectionString, "--container", tc.Container, "--path-format", tc.PathFormat, "--only-unique" }, tc.Content); // Assert tc.VerifyCommandResult(actual); Assert.Equal("Gettings the existing latest... exactly the same! No upload required.", actual.Output.TrimEnd()); } }