packages feed

sbp-0.50.4: test/Test/SwiftNav/SBP/Table.hs

module Test.SwiftNav.SBP.Table
  ( tests
  ) where

import BasicPrelude
import SwiftNav.SBP
import Test.SwiftNav.SBP.Utils
import Test.Tasty
import Test.Tasty.HUnit

testParse :: TestTree
testParse =
  testGroup "Empty Test"
    [ testCase "Empty data" $ do
        True @?= False
    ]

tests :: TestTree
tests =
  testGroup "Table Tests"
    [ testParse
    ]