Skip to content

Commit

Permalink
update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Simon Felix committed Sep 8, 2023
1 parent 46ff583 commit 91a23fd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 13 deletions.
12 changes: 1 addition & 11 deletions Tests/Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,8 @@
<TargetFramework>net7.0</TargetFramework>

<IsPackable>false</IsPackable>
</PropertyGroup>

<PropertyGroup>
<PlatformTarget>x64</PlatformTarget>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<NoWarn>1701;1702;1822</NoWarn>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<NoWarn>1701;1702;1822</NoWarn>
<PlatformTarget>x64</PlatformTarget>
</PropertyGroup>

<ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions Tests/UIntTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -128,8 +128,8 @@ public void UIntAddUInt()
});

var v = m.AddUIntConst(0);
v += i;
v += j;
v += m.AddUIntConst(i);
v += m.AddUIntConst(j);
m.Solve();
Assert.AreEqual(State.Satisfiable, m.State);
Assert.AreEqual(i + j, v.X);
Expand Down

0 comments on commit 91a23fd

Please sign in to comment.