6d57ca7e14
* WIP migrate tests * WIP fixing more tests * WIP fix test build break * Test results files are now trx * Get CI to pass until we get an xunit xml logger * Added DotNetTestPJ since that was needed for one test * Fix build break * Forgot to add DotNetTestPJ as a build task * Need to restore project.json for the project used in ubuntu test * Restore PJ for ubuntu test * Switch the Ubuntu test to csproj based
66 lines
1.5 KiB
C#
66 lines
1.5 KiB
C#
// 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.
|
|
|
|
namespace Microsoft.DotNet.Cli.Build
|
|
{
|
|
public class DotNetTest : DotNetTool
|
|
{
|
|
protected override string Command
|
|
{
|
|
get { return "test"; }
|
|
}
|
|
|
|
protected override string Args
|
|
{
|
|
get { return $"{GetProjectPath()} {GetConfiguration()} {GetLogger()} {GetNoBuild()}"; }
|
|
}
|
|
|
|
public string Configuration { get; set; }
|
|
|
|
public string Logger { get; set; }
|
|
|
|
public string ProjectPath { get; set; }
|
|
|
|
public bool NoBuild { get; set; }
|
|
|
|
private string GetConfiguration()
|
|
{
|
|
if (!string.IsNullOrEmpty(Configuration))
|
|
{
|
|
return $"--configuration {Configuration}";
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
private string GetLogger()
|
|
{
|
|
if (!string.IsNullOrEmpty(Logger))
|
|
{
|
|
return $"--logger:{Logger}";
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
private string GetProjectPath()
|
|
{
|
|
if (!string.IsNullOrEmpty(ProjectPath))
|
|
{
|
|
return $"{ProjectPath}";
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
private string GetNoBuild()
|
|
{
|
|
if (NoBuild)
|
|
{
|
|
return "--noBuild";
|
|
}
|
|
|
|
return null;
|
|
}
|
|
}
|
|
}
|