1
1
mirror of https://github.com/github/semantic.git synced 2024-11-24 00:42:33 +03:00
semantic/semantic-source/test/Test.hs

12 lines
192 B
Haskell
Raw Normal View History

2019-09-20 23:03:29 +03:00
module Main
( main
) where
import qualified Source.Test as Source
import Test.Tasty as Tasty
main :: IO ()
main = defaultMain $ testGroup "semantic-source"
[ Source.testTree
]