Rename newly-added `.props` file, improve MSTest output
fixes 6df491c9d
This commit is contained in:
parent
5a6fcce981
commit
49fa40f562
|
@ -2,7 +2,7 @@
|
|||
<PropertyGroup>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
</PropertyGroup>
|
||||
<Import Project="../MainSlnTest.props" />
|
||||
<Import Project="../TestProjects.props" />
|
||||
<PropertyGroup>
|
||||
<NoWarn>$(NoWarn);CA1310;CA1416</NoWarn>
|
||||
</PropertyGroup>
|
||||
|
|
|
@ -34,7 +34,7 @@ namespace BizHawk.Tests.Testroms.GB.GambatteSuite
|
|||
}
|
||||
|
||||
public string? GetDisplayName(MethodInfo methodInfo, object?[]? data)
|
||||
=> $"{methodInfo.Name}({((GambatteHexStrTestCase) data![0]!).DisplayName()})";
|
||||
=> $"{methodInfo.Name}(\"{((GambatteHexStrTestCase) data![0]!).DisplayName()}\")";
|
||||
}
|
||||
|
||||
[AttributeUsage(AttributeTargets.Method)]
|
||||
|
@ -51,7 +51,7 @@ namespace BizHawk.Tests.Testroms.GB.GambatteSuite
|
|||
}
|
||||
|
||||
public string? GetDisplayName(MethodInfo methodInfo, object?[]? data)
|
||||
=> $"{methodInfo.Name}({((GambatteRefImageTestCase) data![0]!).DisplayName()})";
|
||||
=> $"{methodInfo.Name}(\"{((GambatteRefImageTestCase) data![0]!).DisplayName()}\")";
|
||||
}
|
||||
|
||||
private static readonly byte[,] GLYPHS = {
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
<PropertyGroup>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
</PropertyGroup>
|
||||
<Import Project="../MainSlnTest.props" />
|
||||
<Import Project="../TestProjects.props" />
|
||||
<PropertyGroup>
|
||||
<NoWarn>$(NoWarn);CA1310;CA1416</NoWarn>
|
||||
</PropertyGroup>
|
||||
|
|
|
@ -69,7 +69,7 @@ namespace BizHawk.Tests.Testroms.GB
|
|||
}
|
||||
|
||||
public string? GetDisplayName(MethodInfo methodInfo, object?[]? data)
|
||||
=> $"{methodInfo.Name}({((AcidTestCase) data![0]!).DisplayName()})";
|
||||
=> $"{methodInfo.Name}(\"{((AcidTestCase) data![0]!).DisplayName()}\")";
|
||||
}
|
||||
|
||||
private const string SUITE_ID = "AcidTestroms";
|
||||
|
|
|
@ -27,7 +27,7 @@ namespace BizHawk.Tests.Testroms.GB
|
|||
}
|
||||
|
||||
public string? GetDisplayName(MethodInfo methodInfo, object?[]? data)
|
||||
=> $"{methodInfo.Name}({(CoreSetup) data![0]!})";
|
||||
=> $"{methodInfo.Name}(\"{(CoreSetup) data![0]!}\")";
|
||||
}
|
||||
|
||||
private const string ROM_EMBED_PATH = "res.BullyGB_artifact.bully.gb";
|
||||
|
|
|
@ -140,7 +140,7 @@ namespace BizHawk.Tests.Testroms.GB.CPPTestroms
|
|||
}
|
||||
|
||||
public string? GetDisplayName(MethodInfo methodInfo, object?[]? data)
|
||||
=> $"{methodInfo.Name}({((CPPTestromsHexStrTestCase) data![0]!).DisplayName()})";
|
||||
=> $"{methodInfo.Name}(\"{((CPPTestromsHexStrTestCase) data![0]!).DisplayName()}\")";
|
||||
}
|
||||
|
||||
private static readonly byte[,] GLYPHS = {
|
||||
|
|
|
@ -231,7 +231,7 @@ namespace BizHawk.Tests.Testroms.GB
|
|||
}
|
||||
|
||||
public string? GetDisplayName(MethodInfo methodInfo, object?[]? data)
|
||||
=> $"{methodInfo.Name}({((MealybugTestCase) data![0]!).DisplayName()})";
|
||||
=> $"{methodInfo.Name}(\"{((MealybugTestCase) data![0]!).DisplayName()}\")";
|
||||
}
|
||||
|
||||
private const string SUITE_ID = "Mealybug";
|
||||
|
|
|
@ -32,7 +32,7 @@ namespace BizHawk.Tests.Testroms.GB
|
|||
}
|
||||
|
||||
public string? GetDisplayName(MethodInfo methodInfo, object?[]? data)
|
||||
=> $"{methodInfo.Name}({(CoreSetup) data![0]!})";
|
||||
=> $"{methodInfo.Name}(\"{(CoreSetup) data![0]!}\")";
|
||||
}
|
||||
|
||||
private const string ROM_EMBED_PATH = "res.rtc3test_artifact.rtc3test.gb";
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
<PropertyGroup Condition=" '$(APPVEYOR)' != '' ">
|
||||
<TargetFramework>netcoreapp3.1</TargetFramework>
|
||||
</PropertyGroup>
|
||||
<Import Project="../MainSlnTest.props" />
|
||||
<Import Project="../TestProjects.props" />
|
||||
<PropertyGroup>
|
||||
<DefineConstants Condition=" '$(ContinuousIntegrationBuild)' == 'true' ">$(DefineConstants);SKIP_PLATFORM_TESTS</DefineConstants>
|
||||
</PropertyGroup>
|
||||
|
|
Loading…
Reference in New Issue