aboutsummaryrefslogtreecommitdiffstats
path: root/tests/Locusts.cs
blob: 0ec1f7a6809eab50a1198f08f778c2b100985c1a (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);
    }
}