2016-10-28 01:46:43 +00:00
|
|
|
// Copyright (c) .NET Foundation and contributors. All rights reserved.
|
|
|
|
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
|
|
|
|
|
|
|
using System.IO;
|
2017-05-26 03:53:03 +00:00
|
|
|
using FluentAssertions;
|
2016-10-28 01:46:43 +00:00
|
|
|
using Microsoft.DotNet.Tools.Test.Utilities;
|
|
|
|
using Xunit;
|
|
|
|
|
|
|
|
namespace Microsoft.DotNet.Cli.Run.Tests
|
|
|
|
{
|
|
|
|
public class GivenDotnetRunBuildsCsproj : TestBase
|
|
|
|
{
|
|
|
|
[Fact]
|
|
|
|
public void ItCanRunAMSBuildProject()
|
|
|
|
{
|
|
|
|
var testAppName = "MSBuildTestApp";
|
2017-02-15 23:35:03 +00:00
|
|
|
var testInstance = TestAssets.Get(testAppName)
|
|
|
|
.CreateInstance()
|
|
|
|
.WithSourceFiles();
|
2016-10-28 01:46:43 +00:00
|
|
|
|
2017-02-15 23:35:03 +00:00
|
|
|
var testProjectDirectory = testInstance.Root.FullName;
|
2016-10-28 01:46:43 +00:00
|
|
|
|
|
|
|
new RestoreCommand()
|
|
|
|
.WithWorkingDirectory(testProjectDirectory)
|
|
|
|
.Execute("/p:SkipInvalidConfigurations=true")
|
|
|
|
.Should().Pass();
|
|
|
|
|
|
|
|
new BuildCommand()
|
|
|
|
.WithWorkingDirectory(testProjectDirectory)
|
|
|
|
.Execute()
|
|
|
|
.Should().Pass();
|
|
|
|
|
|
|
|
new RunCommand()
|
|
|
|
.WithWorkingDirectory(testProjectDirectory)
|
|
|
|
.ExecuteWithCapturedOutput()
|
|
|
|
.Should().Pass()
|
|
|
|
.And.HaveStdOutContaining("Hello World!");
|
|
|
|
}
|
|
|
|
|
|
|
|
[Fact]
|
|
|
|
public void ItBuildsTheProjectBeforeRunning()
|
|
|
|
{
|
|
|
|
var testAppName = "MSBuildTestApp";
|
2017-02-15 23:35:03 +00:00
|
|
|
var testInstance = TestAssets.Get(testAppName)
|
|
|
|
.CreateInstance()
|
|
|
|
.WithSourceFiles();
|
2016-10-28 01:46:43 +00:00
|
|
|
|
2017-02-15 23:35:03 +00:00
|
|
|
var testProjectDirectory = testInstance.Root.FullName;
|
2016-10-28 01:46:43 +00:00
|
|
|
|
|
|
|
new RestoreCommand()
|
|
|
|
.WithWorkingDirectory(testProjectDirectory)
|
|
|
|
.Execute("/p:SkipInvalidConfigurations=true")
|
|
|
|
.Should().Pass();
|
|
|
|
|
|
|
|
new RunCommand()
|
|
|
|
.WithWorkingDirectory(testProjectDirectory)
|
|
|
|
.ExecuteWithCapturedOutput()
|
|
|
|
.Should().Pass()
|
|
|
|
.And.HaveStdOutContaining("Hello World!");
|
|
|
|
}
|
|
|
|
|
|
|
|
[Fact]
|
|
|
|
public void ItCanRunAMSBuildProjectWhenSpecifyingAFramework()
|
|
|
|
{
|
|
|
|
var testAppName = "MSBuildTestApp";
|
2017-02-15 23:35:03 +00:00
|
|
|
var testInstance = TestAssets.Get(testAppName)
|
|
|
|
.CreateInstance()
|
|
|
|
.WithSourceFiles();
|
2016-10-28 01:46:43 +00:00
|
|
|
|
2017-02-15 23:35:03 +00:00
|
|
|
var testProjectDirectory = testInstance.Root.FullName;
|
2016-10-28 01:46:43 +00:00
|
|
|
|
|
|
|
new RestoreCommand()
|
|
|
|
.WithWorkingDirectory(testProjectDirectory)
|
|
|
|
.Execute("/p:SkipInvalidConfigurations=true")
|
|
|
|
.Should().Pass();
|
|
|
|
|
|
|
|
new RunCommand()
|
|
|
|
.WithWorkingDirectory(testProjectDirectory)
|
2017-03-02 20:46:21 +00:00
|
|
|
.ExecuteWithCapturedOutput("--framework netcoreapp2.0")
|
2016-10-28 01:46:43 +00:00
|
|
|
.Should().Pass()
|
2017-03-03 04:35:20 +00:00
|
|
|
.And.HaveStdOutContaining("Hello World!");
|
2016-10-28 01:46:43 +00:00
|
|
|
}
|
2017-03-03 04:35:20 +00:00
|
|
|
|
|
|
|
[Fact]
|
|
|
|
public void ItRunsPortableAppsFromADifferentPathAfterBuilding()
|
2016-10-28 01:46:43 +00:00
|
|
|
{
|
|
|
|
var testInstance = TestAssets.Get("MSBuildTestApp")
|
|
|
|
.CreateInstance()
|
|
|
|
.WithSourceFiles()
|
|
|
|
.WithRestoreFiles();
|
2017-03-03 04:35:20 +00:00
|
|
|
|
|
|
|
new BuildCommand()
|
|
|
|
.WithWorkingDirectory(testInstance.Root)
|
|
|
|
.Execute()
|
|
|
|
.Should().Pass();
|
|
|
|
|
|
|
|
new RunCommand()
|
|
|
|
.WithWorkingDirectory(testInstance.Root)
|
|
|
|
.ExecuteWithCapturedOutput($"--no-build")
|
|
|
|
.Should().Pass()
|
|
|
|
.And.HaveStdOutContaining("Hello World!");
|
|
|
|
}
|
|
|
|
|
|
|
|
[Fact]
|
|
|
|
public void ItRunsPortableAppsFromADifferentPathWithoutBuilding()
|
|
|
|
{
|
|
|
|
var testAppName = "MSBuildTestApp";
|
2016-10-28 01:46:43 +00:00
|
|
|
var testInstance = TestAssets.Get(testAppName)
|
|
|
|
.CreateInstance()
|
|
|
|
.WithSourceFiles()
|
|
|
|
.WithRestoreFiles();
|
|
|
|
|
2017-03-03 04:35:20 +00:00
|
|
|
var projectFile = testInstance.Root.GetFile(testAppName + ".csproj");
|
2016-10-28 01:46:43 +00:00
|
|
|
|
2017-03-03 04:35:20 +00:00
|
|
|
new RunCommand()
|
|
|
|
.WithWorkingDirectory(testInstance.Root.Parent)
|
|
|
|
.ExecuteWithCapturedOutput($"--project {projectFile.FullName}")
|
|
|
|
.Should().Pass()
|
|
|
|
.And.HaveStdOutContaining("Hello World!");
|
2016-12-18 08:45:25 +00:00
|
|
|
}
|
|
|
|
|
2017-03-24 05:44:53 +00:00
|
|
|
[Fact]
|
|
|
|
public void ItRunsPortableAppsFromADifferentPathSpecifyingOnlyTheDirectoryWithoutBuilding()
|
|
|
|
{
|
|
|
|
var testAppName = "MSBuildTestApp";
|
|
|
|
var testInstance = TestAssets.Get(testAppName)
|
|
|
|
.CreateInstance()
|
|
|
|
.WithSourceFiles()
|
|
|
|
.WithRestoreFiles();
|
|
|
|
|
|
|
|
var testProjectDirectory = testInstance.Root.FullName;
|
|
|
|
|
|
|
|
new RunCommand()
|
|
|
|
.WithWorkingDirectory(testInstance.Root.Parent)
|
|
|
|
.ExecuteWithCapturedOutput($"--project {testProjectDirectory}")
|
|
|
|
.Should().Pass()
|
|
|
|
.And.HaveStdOutContaining("Hello World!");
|
|
|
|
}
|
|
|
|
|
2016-12-18 08:45:25 +00:00
|
|
|
[Fact]
|
|
|
|
public void ItRunsAppWhenRestoringToSpecificPackageDirectory()
|
|
|
|
{
|
2017-02-15 23:35:03 +00:00
|
|
|
var rootPath = TestAssets.CreateTestDirectory().FullName;
|
2016-12-18 08:45:25 +00:00
|
|
|
|
|
|
|
string dir = "pkgs";
|
|
|
|
string args = $"--packages {dir}";
|
|
|
|
|
2017-04-11 03:00:17 +00:00
|
|
|
string newArgs = $"console -o \"{rootPath}\" --no-restore";
|
2017-02-01 01:31:37 +00:00
|
|
|
new NewCommandShim()
|
2016-12-18 08:45:25 +00:00
|
|
|
.WithWorkingDirectory(rootPath)
|
2017-02-01 01:31:37 +00:00
|
|
|
.Execute(newArgs)
|
2016-12-18 08:45:25 +00:00
|
|
|
.Should()
|
|
|
|
.Pass();
|
|
|
|
|
|
|
|
new RestoreCommand()
|
|
|
|
.WithWorkingDirectory(rootPath)
|
|
|
|
.Execute(args)
|
|
|
|
.Should()
|
|
|
|
.Pass();
|
|
|
|
|
|
|
|
new RunCommand()
|
|
|
|
.WithWorkingDirectory(rootPath)
|
|
|
|
.ExecuteWithCapturedOutput()
|
|
|
|
.Should().Pass()
|
|
|
|
.And.HaveStdOutContaining("Hello World");
|
|
|
|
}
|
2017-03-21 18:46:08 +00:00
|
|
|
|
|
|
|
[Fact]
|
|
|
|
public void ItReportsAGoodErrorWhenProjectHasMultipleFrameworks()
|
|
|
|
{
|
|
|
|
var testAppName = "MSBuildAppWithMultipleFrameworks";
|
|
|
|
var testInstance = TestAssets.Get(testAppName)
|
|
|
|
.CreateInstance()
|
|
|
|
.WithSourceFiles()
|
|
|
|
.WithRestoreFiles();
|
|
|
|
|
|
|
|
// use --no-build so this test can run on all platforms.
|
|
|
|
// the test app targets net451, which can't be built on non-Windows
|
|
|
|
new RunCommand()
|
|
|
|
.WithWorkingDirectory(testInstance.Root)
|
|
|
|
.ExecuteWithCapturedOutput("--no-build")
|
|
|
|
.Should().Fail()
|
|
|
|
.And.HaveStdErrContaining("--framework");
|
|
|
|
}
|
2017-04-12 23:03:45 +00:00
|
|
|
|
|
|
|
[Fact]
|
|
|
|
public void ItCanPassArgumentsToSubjectAppByDoubleDash()
|
|
|
|
{
|
|
|
|
const string testAppName = "MSBuildTestApp";
|
|
|
|
var testInstance = TestAssets.Get(testAppName)
|
|
|
|
.CreateInstance()
|
|
|
|
.WithSourceFiles()
|
|
|
|
.WithRestoreFiles();
|
|
|
|
|
|
|
|
var testProjectDirectory = testInstance.Root.FullName;
|
|
|
|
|
|
|
|
new RunCommand()
|
|
|
|
.WithWorkingDirectory(testProjectDirectory)
|
|
|
|
.ExecuteWithCapturedOutput("-- foo bar baz")
|
|
|
|
.Should()
|
|
|
|
.Pass()
|
|
|
|
.And.HaveStdOutContaining("echo args:foo;bar;baz");
|
|
|
|
}
|
2017-05-26 03:53:03 +00:00
|
|
|
|
|
|
|
[Fact]
|
|
|
|
public void ItGivesAnErrorWhenAttemptingToUseALaunchProfileThatDoesNotExistWhenThereIsNoLaunchSettingsFile()
|
|
|
|
{
|
|
|
|
var testAppName = "MSBuildTestApp";
|
|
|
|
var testInstance = TestAssets.Get(testAppName)
|
|
|
|
.CreateInstance()
|
|
|
|
.WithSourceFiles();
|
|
|
|
|
|
|
|
var testProjectDirectory = testInstance.Root.FullName;
|
|
|
|
|
|
|
|
new RestoreCommand()
|
|
|
|
.WithWorkingDirectory(testProjectDirectory)
|
|
|
|
.Execute("/p:SkipInvalidConfigurations=true")
|
|
|
|
.Should().Pass();
|
|
|
|
|
|
|
|
new BuildCommand()
|
|
|
|
.WithWorkingDirectory(testProjectDirectory)
|
|
|
|
.Execute()
|
|
|
|
.Should().Pass();
|
|
|
|
|
|
|
|
new RunCommand()
|
|
|
|
.WithWorkingDirectory(testProjectDirectory)
|
|
|
|
.ExecuteWithCapturedOutput("--launch-profile test")
|
|
|
|
.Should().Pass()
|
|
|
|
.And.HaveStdOutContaining("Hello World!")
|
|
|
|
.And.HaveStdErrContaining("The specified launch profile could not be located.");
|
|
|
|
}
|
|
|
|
|
|
|
|
[Fact]
|
|
|
|
public void ItUsesLaunchProfileOfTheSpecifiedName()
|
|
|
|
{
|
2017-05-31 18:48:01 +00:00
|
|
|
var testAppName = "AppWithLaunchSettings";
|
2017-05-26 03:53:03 +00:00
|
|
|
var testInstance = TestAssets.Get(testAppName)
|
|
|
|
.CreateInstance()
|
|
|
|
.WithSourceFiles();
|
|
|
|
|
|
|
|
var testProjectDirectory = testInstance.Root.FullName;
|
|
|
|
|
|
|
|
new RestoreCommand()
|
|
|
|
.WithWorkingDirectory(testProjectDirectory)
|
|
|
|
.Execute("/p:SkipInvalidConfigurations=true")
|
|
|
|
.Should().Pass();
|
|
|
|
|
|
|
|
new BuildCommand()
|
|
|
|
.WithWorkingDirectory(testProjectDirectory)
|
|
|
|
.Execute()
|
|
|
|
.Should().Pass();
|
|
|
|
|
|
|
|
var cmd = new RunCommand()
|
|
|
|
.WithWorkingDirectory(testProjectDirectory)
|
|
|
|
.ExecuteWithCapturedOutput("--launch-profile Second");
|
|
|
|
|
|
|
|
cmd.Should().Pass()
|
|
|
|
.And.HaveStdOutContaining("Second");
|
|
|
|
|
|
|
|
cmd.StdErr.Should().BeEmpty();
|
|
|
|
}
|
|
|
|
|
|
|
|
[Fact]
|
|
|
|
public void ItDefaultsToTheFirstUsableLaunchProfile()
|
|
|
|
{
|
2017-05-31 18:48:01 +00:00
|
|
|
var testAppName = "AppWithLaunchSettings";
|
2017-05-26 03:53:03 +00:00
|
|
|
var testInstance = TestAssets.Get(testAppName)
|
|
|
|
.CreateInstance()
|
|
|
|
.WithSourceFiles();
|
|
|
|
|
|
|
|
var testProjectDirectory = testInstance.Root.FullName;
|
|
|
|
|
|
|
|
new RestoreCommand()
|
|
|
|
.WithWorkingDirectory(testProjectDirectory)
|
|
|
|
.Execute("/p:SkipInvalidConfigurations=true")
|
|
|
|
.Should().Pass();
|
|
|
|
|
|
|
|
new BuildCommand()
|
|
|
|
.WithWorkingDirectory(testProjectDirectory)
|
|
|
|
.Execute()
|
|
|
|
.Should().Pass();
|
|
|
|
|
|
|
|
var cmd = new RunCommand()
|
|
|
|
.WithWorkingDirectory(testProjectDirectory)
|
|
|
|
.ExecuteWithCapturedOutput();
|
|
|
|
|
|
|
|
cmd.Should().Pass()
|
|
|
|
.And.HaveStdOutContaining("First");
|
|
|
|
|
|
|
|
cmd.StdErr.Should().BeEmpty();
|
|
|
|
}
|
|
|
|
|
|
|
|
[Fact]
|
|
|
|
public void ItGivesAnErrorWhenTheLaunchProfileNotFound()
|
|
|
|
{
|
2017-05-31 18:48:01 +00:00
|
|
|
var testAppName = "AppWithLaunchSettings";
|
2017-05-26 03:53:03 +00:00
|
|
|
var testInstance = TestAssets.Get(testAppName)
|
|
|
|
.CreateInstance()
|
|
|
|
.WithSourceFiles();
|
|
|
|
|
|
|
|
var testProjectDirectory = testInstance.Root.FullName;
|
|
|
|
|
|
|
|
new RestoreCommand()
|
|
|
|
.WithWorkingDirectory(testProjectDirectory)
|
|
|
|
.Execute("/p:SkipInvalidConfigurations=true")
|
|
|
|
.Should().Pass();
|
|
|
|
|
|
|
|
new BuildCommand()
|
|
|
|
.WithWorkingDirectory(testProjectDirectory)
|
|
|
|
.Execute()
|
|
|
|
.Should().Pass();
|
|
|
|
|
|
|
|
new RunCommand()
|
|
|
|
.WithWorkingDirectory(testProjectDirectory)
|
|
|
|
.ExecuteWithCapturedOutput("--launch-profile Third")
|
|
|
|
.Should().Pass()
|
|
|
|
.And.HaveStdOutContaining("(NO MESSAGE)")
|
|
|
|
.And.HaveStdErrContaining("The launch profile \"Third\" could not be applied.");
|
|
|
|
}
|
|
|
|
|
|
|
|
[Fact]
|
|
|
|
public void ItGivesAnErrorWhenTheLaunchProfileCanNotBeHandled()
|
|
|
|
{
|
2017-05-31 18:48:01 +00:00
|
|
|
var testAppName = "AppWithLaunchSettings";
|
2017-05-26 03:53:03 +00:00
|
|
|
var testInstance = TestAssets.Get(testAppName)
|
|
|
|
.CreateInstance()
|
|
|
|
.WithSourceFiles();
|
|
|
|
|
|
|
|
var testProjectDirectory = testInstance.Root.FullName;
|
|
|
|
|
|
|
|
new RestoreCommand()
|
|
|
|
.WithWorkingDirectory(testProjectDirectory)
|
|
|
|
.Execute("/p:SkipInvalidConfigurations=true")
|
|
|
|
.Should().Pass();
|
|
|
|
|
|
|
|
new BuildCommand()
|
|
|
|
.WithWorkingDirectory(testProjectDirectory)
|
|
|
|
.Execute()
|
|
|
|
.Should().Pass();
|
|
|
|
|
|
|
|
new RunCommand()
|
|
|
|
.WithWorkingDirectory(testProjectDirectory)
|
|
|
|
.ExecuteWithCapturedOutput("--launch-profile \"IIS Express\"")
|
|
|
|
.Should().Pass()
|
|
|
|
.And.HaveStdOutContaining("(NO MESSAGE)")
|
|
|
|
.And.HaveStdErrContaining("The launch profile \"IIS Express\" could not be applied.");
|
|
|
|
}
|
|
|
|
|
|
|
|
[Fact]
|
|
|
|
public void ItSkipsLaunchProfilesWhenTheSwitchIsSupplied()
|
|
|
|
{
|
2017-05-31 18:48:01 +00:00
|
|
|
var testAppName = "AppWithLaunchSettings";
|
2017-05-26 03:53:03 +00:00
|
|
|
var testInstance = TestAssets.Get(testAppName)
|
|
|
|
.CreateInstance()
|
|
|
|
.WithSourceFiles();
|
|
|
|
|
|
|
|
var testProjectDirectory = testInstance.Root.FullName;
|
|
|
|
|
|
|
|
new RestoreCommand()
|
|
|
|
.WithWorkingDirectory(testProjectDirectory)
|
|
|
|
.Execute("/p:SkipInvalidConfigurations=true")
|
|
|
|
.Should().Pass();
|
|
|
|
|
|
|
|
new BuildCommand()
|
|
|
|
.WithWorkingDirectory(testProjectDirectory)
|
|
|
|
.Execute()
|
|
|
|
.Should().Pass();
|
|
|
|
|
|
|
|
var cmd = new RunCommand()
|
|
|
|
.WithWorkingDirectory(testProjectDirectory)
|
|
|
|
.ExecuteWithCapturedOutput("--no-launch-profile");
|
|
|
|
|
|
|
|
cmd.Should().Pass()
|
|
|
|
.And.HaveStdOutContaining("(NO MESSAGE)");
|
|
|
|
|
|
|
|
cmd.StdErr.Should().BeEmpty();
|
|
|
|
}
|
|
|
|
|
|
|
|
[Fact]
|
|
|
|
public void ItSkipsLaunchProfilesWhenTheSwitchIsSuppliedWithoutErrorWhenThereAreNoLaunchSettings()
|
|
|
|
{
|
|
|
|
var testAppName = "MSBuildTestApp";
|
|
|
|
var testInstance = TestAssets.Get(testAppName)
|
|
|
|
.CreateInstance()
|
|
|
|
.WithSourceFiles();
|
|
|
|
|
|
|
|
var testProjectDirectory = testInstance.Root.FullName;
|
|
|
|
|
|
|
|
new RestoreCommand()
|
|
|
|
.WithWorkingDirectory(testProjectDirectory)
|
|
|
|
.Execute("/p:SkipInvalidConfigurations=true")
|
|
|
|
.Should().Pass();
|
|
|
|
|
|
|
|
new BuildCommand()
|
|
|
|
.WithWorkingDirectory(testProjectDirectory)
|
|
|
|
.Execute()
|
|
|
|
.Should().Pass();
|
|
|
|
|
|
|
|
var cmd = new RunCommand()
|
|
|
|
.WithWorkingDirectory(testProjectDirectory)
|
|
|
|
.ExecuteWithCapturedOutput("--no-launch-profile");
|
|
|
|
|
|
|
|
cmd.Should().Pass()
|
|
|
|
.And.HaveStdOutContaining("Hello World!");
|
|
|
|
|
|
|
|
cmd.StdErr.Should().BeEmpty();
|
|
|
|
}
|
|
|
|
|
|
|
|
[Fact]
|
|
|
|
public void ItSkipsLaunchProfilesWhenThereIsNoUsableDefault()
|
|
|
|
{
|
2017-05-31 21:07:34 +00:00
|
|
|
var testAppName = "AppWithLaunchSettingsNoDefault";
|
2017-05-26 03:53:03 +00:00
|
|
|
var testInstance = TestAssets.Get(testAppName)
|
|
|
|
.CreateInstance()
|
|
|
|
.WithSourceFiles();
|
|
|
|
|
|
|
|
var testProjectDirectory = testInstance.Root.FullName;
|
|
|
|
|
|
|
|
new RestoreCommand()
|
|
|
|
.WithWorkingDirectory(testProjectDirectory)
|
|
|
|
.Execute("/p:SkipInvalidConfigurations=true")
|
|
|
|
.Should().Pass();
|
|
|
|
|
|
|
|
new BuildCommand()
|
|
|
|
.WithWorkingDirectory(testProjectDirectory)
|
|
|
|
.Execute()
|
|
|
|
.Should().Pass();
|
|
|
|
|
|
|
|
var cmd = new RunCommand()
|
|
|
|
.WithWorkingDirectory(testProjectDirectory)
|
|
|
|
.ExecuteWithCapturedOutput();
|
|
|
|
|
|
|
|
cmd.Should().Pass()
|
|
|
|
.And.HaveStdOutContaining("(NO MESSAGE)")
|
|
|
|
.And.HaveStdErrContaining("The launch profile \"(Default)\" could not be applied.");
|
|
|
|
}
|
|
|
|
|
|
|
|
[Fact]
|
2017-05-29 19:54:19 +00:00
|
|
|
public void ItPrintsAnErrorWhenLaunchSettingsAreCorrupted()
|
2017-05-26 03:53:03 +00:00
|
|
|
{
|
2017-05-31 18:48:01 +00:00
|
|
|
var testAppName = "AppWithCorruptedLaunchSettings";
|
2017-05-26 03:53:03 +00:00
|
|
|
var testInstance = TestAssets.Get(testAppName)
|
|
|
|
.CreateInstance()
|
|
|
|
.WithSourceFiles();
|
|
|
|
|
|
|
|
var testProjectDirectory = testInstance.Root.FullName;
|
|
|
|
|
|
|
|
new RestoreCommand()
|
|
|
|
.WithWorkingDirectory(testProjectDirectory)
|
|
|
|
.Execute("/p:SkipInvalidConfigurations=true")
|
|
|
|
.Should().Pass();
|
|
|
|
|
|
|
|
new BuildCommand()
|
|
|
|
.WithWorkingDirectory(testProjectDirectory)
|
|
|
|
.Execute()
|
|
|
|
.Should().Pass();
|
|
|
|
|
|
|
|
var cmd = new RunCommand()
|
|
|
|
.WithWorkingDirectory(testProjectDirectory)
|
|
|
|
.ExecuteWithCapturedOutput();
|
|
|
|
|
|
|
|
cmd.Should().Pass()
|
|
|
|
.And.HaveStdOutContaining("(NO MESSAGE)")
|
|
|
|
.And.HaveStdErrContaining("The launch profile \"(Default)\" could not be applied.");
|
|
|
|
}
|
2016-10-28 01:46:43 +00:00
|
|
|
}
|
2017-03-03 04:35:20 +00:00
|
|
|
}
|