mirror of
https://github.com/facebook/Haxl.git
synced 2024-12-24 17:23:03 +03:00
c1c789a71f
Reviewed By: mic47, niteria Differential Revision: D6519157 fbshipit-source-id: 7fd977837bb7dd8463d697d685107aaf07c95255
16 lines
403 B
Haskell
16 lines
403 B
Haskell
-- Copyright (c) 2014-present, Facebook, Inc.
|
|
-- All rights reserved.
|
|
--
|
|
-- This source code is distributed under the terms of a BSD license,
|
|
-- found in the LICENSE file.
|
|
|
|
{-# LANGUAGE CPP, OverloadedStrings #-}
|
|
module Main where
|
|
|
|
import Test.Framework (defaultMain)
|
|
import Test.Framework.Providers.HUnit (hUnitTestToTests)
|
|
import AllTests
|
|
|
|
main :: IO ()
|
|
main = defaultMain $ hUnitTestToTests allTests
|