rtcm-0.1.4: test/Test/Data/CRC24Q.hs
-- |
-- Module: Test.Data.CRC24Q
-- Copyright: (c) 2015 Mark Fine
-- License: BSD3
-- Maintainer: Mark Fine <mark@swift-nav.com>
--
-- Test module for CRC24Q.
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
]