diff options
Diffstat (limited to 'test/AgentTest.hs')
-rw-r--r-- | test/AgentTest.hs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test/AgentTest.hs b/test/AgentTest.hs new file mode 100644 index 0000000..c89d28a --- /dev/null +++ b/test/AgentTest.hs @@ -0,0 +1,10 @@ +module AgentTest (suite) where + +import Test.Tasty +import Test.Tasty.HUnit +import Agent + +suite :: TestTree +suite = testGroup "agent tests" $ + [ + ] |