sbp-0.52.0: test/Test/SwiftNav/SBP/ExtEvents.hs
module Test.SwiftNav.SBP.ExtEvents
( tests
) where
import BasicPrelude
import SwiftNav.SBP.ExtEvents
import Test.SwiftNav.SBP.Utils
import Test.Tasty
import Test.Tasty.HUnit
testParse :: TestTree
testParse =
testGroup "Package tests"
[ testCase "Parsing tests" $ do
let filepath = "../spec/tests/yaml/swiftnav/sbp/test_ext_events.yaml"
moduleName = "sbp.ext_events"
val <- assertPackage filepath moduleName
assertBool "Fail" val
]
tests :: TestTree
tests =
testGroup "ExtEvents Tests"
[ testParse
]