From be1f06a4aa6d4a2ac253b33b405fe96862d3c906 Mon Sep 17 00:00:00 2001 From: Matt Strapp Date: Tue, 6 Aug 2024 14:01:38 -0500 Subject: Add .NET Signed-off-by: Matt Strapp --- tests/GlobalUsings.cs | 1 + tests/Locusts.Testing.csproj | 22 ++++++++++++++++++++++ tests/Locusts.cs | 12 ++++++++++++ 3 files changed, 35 insertions(+) create mode 100644 tests/GlobalUsings.cs create mode 100644 tests/Locusts.Testing.csproj create mode 100644 tests/Locusts.cs (limited to 'tests') diff --git a/tests/GlobalUsings.cs b/tests/GlobalUsings.cs new file mode 100644 index 0000000..ab67c7e --- /dev/null +++ b/tests/GlobalUsings.cs @@ -0,0 +1 @@ +global using Microsoft.VisualStudio.TestTools.UnitTesting; \ No newline at end of file diff --git a/tests/Locusts.Testing.csproj b/tests/Locusts.Testing.csproj new file mode 100644 index 0000000..fc77ecf --- /dev/null +++ b/tests/Locusts.Testing.csproj @@ -0,0 +1,22 @@ + + + + net8.0 + enable + enable + + false + true + + + + + + + + + + + + + diff --git a/tests/Locusts.cs b/tests/Locusts.cs new file mode 100644 index 0000000..a220043 --- /dev/null +++ b/tests/Locusts.cs @@ -0,0 +1,12 @@ +namespace Locusts.Testing; + +[TestClass] +public class Test +{ + [TestMethod] + public void TestLocusts() + { + Locusts.IntroduceLocusts(); + Assert.IsTrue(1==1); + } +} \ No newline at end of file -- cgit v1.2.3