mirror of
https://github.com/logos-storage/nim-goldilocks-hash.git
synced 2026-01-02 13:43:09 +00:00
24 lines
657 B
Haskell
24 lines
657 B
Haskell
|
|
module GenAll where
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
import qualified TestGen.TestGoldilocks as F
|
|
import qualified TestGen.TestPermutation as P
|
|
import qualified TestGen.TestCompress as C
|
|
import qualified TestGen.TestSponge as S
|
|
import qualified TestGen.TestMerkle as M
|
|
|
|
import Common
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
writeTestCasesFor :: Hash -> IO ()
|
|
writeTestCasesFor hash = do
|
|
P.writeTests hash
|
|
C.writeTests hash
|
|
S.writeTests hash
|
|
M.writeTests hash
|
|
|
|
--------------------------------------------------------------------------------
|