test: remove exact duplicate coverage
This commit is contained in:
parent
9c6b143a03
commit
5fa9933636
7 changed files with 133 additions and 32 deletions
|
|
@ -499,7 +499,7 @@ public sealed class VulkanCapabilityGateTests
|
|||
}
|
||||
|
||||
[Fact]
|
||||
public void TheReportFileNameSitsBesideTheGlOne()
|
||||
public void TheReportFileNameRemainsStableForDiagnosticsAutomation()
|
||||
{
|
||||
Assert.Equal(
|
||||
"graphical-capabilities-vulkan.json",
|
||||
|
|
|
|||
|
|
@ -177,14 +177,4 @@ public sealed class VulkanCapabilityReportContractTests
|
|||
Assert.Contains("timelineSemaphore", message, StringComparison.Ordinal);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// The report file name is what the workflow's VULKAN_REPORT path ends in.
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public void TheReportFileNameIsTheOneTheWorkflowPathNames()
|
||||
{
|
||||
Assert.Equal(
|
||||
"graphical-capabilities-vulkan.json",
|
||||
VulkanCapabilityGuard.ReportFileName);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -38,15 +38,6 @@ public sealed class CastSpellTests
|
|||
BinaryPrimitives.ReadUInt32LittleEndian(body.AsSpan(16)));
|
||||
}
|
||||
|
||||
[Fact]
|
||||
public void ParseMagicUpdateSpell_RoundTrip()
|
||||
{
|
||||
byte[] payload = new byte[4];
|
||||
BinaryPrimitives.WriteUInt32LittleEndian(payload, 0x123403E1u);
|
||||
var parsed = GameEvents.ParseMagicUpdateSpell(payload);
|
||||
Assert.Equal(0x123403E1u, parsed);
|
||||
}
|
||||
|
||||
[Fact]
|
||||
public void ParseMagicUpdateEnchantment_RoundTrip()
|
||||
{
|
||||
|
|
|
|||
|
|
@ -101,7 +101,6 @@ public class MotionCommandCatalogTests
|
|||
[InlineData(0x0005, 0x45000005u)]
|
||||
[InlineData(0x0007, 0x44000007u)]
|
||||
[InlineData(0x000D, 0x6500000Du)]
|
||||
[InlineData(0x0150, 0x10000150u)]
|
||||
[InlineData(0x0153, 0x09000153u)] // NOT LifestoneRecall in 2013 numbering — anchor only.
|
||||
public void Retail2013_AnchorValuesMatchExtractedTable(ushort wire, uint expected)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -429,16 +429,6 @@ public sealed class MotionInterpreterDoMotionFamilyTests
|
|||
// StopCompletely — 0x00527e40 @305208 (A9 verbatim quirk)
|
||||
// =========================================================================
|
||||
|
||||
[Fact]
|
||||
public void StopCompletely_NullPhysicsObj_Returns8()
|
||||
{
|
||||
var interp = new MotionInterpreter();
|
||||
|
||||
var result = interp.StopCompletely();
|
||||
|
||||
Assert.Equal(WeenieError.NoPhysicsObject, result);
|
||||
}
|
||||
|
||||
[Fact]
|
||||
public void StopCompletely_ZeroesForwardSidestepTurnCommands_OnBothStates()
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue