Skip to content

Commit

Permalink
Beef up test a bit
Browse files Browse the repository at this point in the history
  • Loading branch information
AArnott committed Sep 3, 2021
1 parent bf59af5 commit 1439ce5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/GenerationSandbox.Tests/BasicTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,9 @@ public void DISPLAYCONFIG_VIDEO_SIGNAL_INFO_Test()
[Fact]
public void E_PDB_LIMIT()
{
Assert.Equal(-2140340211, global::Microsoft.Dia.Constants.E_PDB_LIMIT.Value);
// We are very particular about the namespace the generated type comes from to ensure it is as expected.
HRESULT hr = global::Microsoft.Dia.Constants.E_PDB_LIMIT;
Assert.Equal(-2140340211, hr.Value);
}

[Fact]
Expand Down

0 comments on commit 1439ce5

Please sign in to comment.