Skip to content

Commit

Permalink
chore: add smoke test
Browse files Browse the repository at this point in the history
  • Loading branch information
kevaundray committed May 31, 2024
1 parent 226038d commit 32f3109
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion bindings/csharp/PeerDASKZG.test/UnitTest1.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
using PeerDASKZG;

namespace PeerDASKZG.test;

public class Tests
Expand All @@ -8,8 +10,9 @@ public void Setup()
}

[Test]
public void Test1()
public void TestSmoke()
{
PeerDASKZG.ProverContextNew();
Assert.AreEqual(true, true);

Check warning on line 16 in bindings/csharp/PeerDASKZG.test/UnitTest1.cs

View workflow job for this annotation

GitHub Actions / build-and-test (ubuntu-latest)

Consider using the constraint model, Assert.That(actual, Is.EqualTo(expected)), instead of the classic model, Assert.AreEqual(expected, actual) (https://github.com/nunit/nunit.analyzers/tree/master/documentation/NUnit2005.md)

Check warning on line 16 in bindings/csharp/PeerDASKZG.test/UnitTest1.cs

View workflow job for this annotation

GitHub Actions / build-and-test (ubuntu-latest)

The actual value should not be a constant - perhaps the actual value and the expected value have switched places (https://github.com/nunit/nunit.analyzers/tree/master/documentation/NUnit2007.md)

Check warning on line 16 in bindings/csharp/PeerDASKZG.test/UnitTest1.cs

View workflow job for this annotation

GitHub Actions / build-and-test (ubuntu-latest)

Consider using the constraint model, Assert.That(actual, Is.EqualTo(expected)), instead of the classic model, Assert.AreEqual(expected, actual) (https://github.com/nunit/nunit.analyzers/tree/master/documentation/NUnit2005.md)

Check warning on line 16 in bindings/csharp/PeerDASKZG.test/UnitTest1.cs

View workflow job for this annotation

GitHub Actions / build-and-test (ubuntu-latest)

The actual value should not be a constant - perhaps the actual value and the expected value have switched places (https://github.com/nunit/nunit.analyzers/tree/master/documentation/NUnit2007.md)

Check warning on line 16 in bindings/csharp/PeerDASKZG.test/UnitTest1.cs

View workflow job for this annotation

GitHub Actions / build-and-test (macos-latest)

Consider using the constraint model, Assert.That(actual, Is.EqualTo(expected)), instead of the classic model, Assert.AreEqual(expected, actual) (https://github.com/nunit/nunit.analyzers/tree/master/documentation/NUnit2005.md)

Check warning on line 16 in bindings/csharp/PeerDASKZG.test/UnitTest1.cs

View workflow job for this annotation

GitHub Actions / build-and-test (macos-latest)

The actual value should not be a constant - perhaps the actual value and the expected value have switched places (https://github.com/nunit/nunit.analyzers/tree/master/documentation/NUnit2007.md)

Check warning on line 16 in bindings/csharp/PeerDASKZG.test/UnitTest1.cs

View workflow job for this annotation

GitHub Actions / build-and-test (macos-latest)

Consider using the constraint model, Assert.That(actual, Is.EqualTo(expected)), instead of the classic model, Assert.AreEqual(expected, actual) (https://github.com/nunit/nunit.analyzers/tree/master/documentation/NUnit2005.md)

Check warning on line 16 in bindings/csharp/PeerDASKZG.test/UnitTest1.cs

View workflow job for this annotation

GitHub Actions / build-and-test (macos-latest)

The actual value should not be a constant - perhaps the actual value and the expected value have switched places (https://github.com/nunit/nunit.analyzers/tree/master/documentation/NUnit2007.md)

Check warning on line 16 in bindings/csharp/PeerDASKZG.test/UnitTest1.cs

View workflow job for this annotation

GitHub Actions / build-and-test (windows-latest)

Consider using the constraint model, Assert.That(actual, Is.EqualTo(expected)), instead of the classic model, Assert.AreEqual(expected, actual) (https://github.com/nunit/nunit.analyzers/tree/master/documentation/NUnit2005.md)

Check warning on line 16 in bindings/csharp/PeerDASKZG.test/UnitTest1.cs

View workflow job for this annotation

GitHub Actions / build-and-test (windows-latest)

The actual value should not be a constant - perhaps the actual value and the expected value have switched places (https://github.com/nunit/nunit.analyzers/tree/master/documentation/NUnit2007.md)

Check warning on line 16 in bindings/csharp/PeerDASKZG.test/UnitTest1.cs

View workflow job for this annotation

GitHub Actions / build-and-test (windows-latest)

Consider using the constraint model, Assert.That(actual, Is.EqualTo(expected)), instead of the classic model, Assert.AreEqual(expected, actual) (https://github.com/nunit/nunit.analyzers/tree/master/documentation/NUnit2005.md)

Check warning on line 16 in bindings/csharp/PeerDASKZG.test/UnitTest1.cs

View workflow job for this annotation

GitHub Actions / build-and-test (windows-latest)

The actual value should not be a constant - perhaps the actual value and the expected value have switched places (https://github.com/nunit/nunit.analyzers/tree/master/documentation/NUnit2007.md)
}
}

0 comments on commit 32f3109

Please sign in to comment.