aboutsummaryrefslogtreecommitdiffstats
path: root/tests/Locusts.cs
blob: a220043615623420ecee2c5e48885b17233e1e7c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
namespace Locusts.Testing;

[TestClass]
public class Test
{
    [TestMethod]
    public void TestLocusts()
    {
        Locusts.IntroduceLocusts();
        Assert.IsTrue(1==1);
    }
}