packages feed

yeshql-hdbc-4.1.0.0: tests/tests.hs

{-#LANGUAGE TemplateHaskell #-}
{-#LANGUAGE QuasiQuotes #-}
module Main where

import Test.Tasty
import qualified Database.YeshQL.HDBC.SimulationTests as SimulationTests

main = defaultMain allTests
    where
        allTests = testGroup "All Tests"
            [ testGroup "Simulation Tests" SimulationTests.tests
            ]