module Test.Consensus.Committee.EveryoneVotes (tests) where

import qualified Test.Consensus.Committee.EveryoneVotes.Tests as Impl
import Test.Tasty (TestTree, testGroup)

tests :: TestTree
tests :: TestTree
tests =
  TestName -> [TestTree] -> TestTree
testGroup
    TestName
"EveryoneVotes"
    [ TestTree
Impl.tests
    ]