rtcm-0.1.2: test/Test/Data/CRC24Q.hs
module Test.Data.CRC24Q
( tests
) where
import BasicPrelude
import Data.CRC24Q
import Test.Tasty
import Test.Tasty.HUnit
testEmpty :: TestTree
testEmpty = testCase "Empty test" $
crc24q "" @?= 0
testSimple :: TestTree
testSimple = testCase "Simple test" $
crc24q "123456789" @?= 0xCDE703
tests :: TestTree
tests =
testGroup "CRC24Q tests"
[ testEmpty
, testSimple
]