2017-10-27 13:31:57 +03:00
|
|
|
-- 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. An additional grant of patent rights can
|
|
|
|
-- be found in the PATENTS file.
|
|
|
|
|
2016-06-02 15:31:22 +03:00
|
|
|
{-# LANGUAGE CPP, OverloadedStrings #-}
|
|
|
|
module Main where
|
|
|
|
|
2016-06-05 00:23:09 +03:00
|
|
|
import Test.Framework (defaultMain)
|
|
|
|
import Test.Framework.Providers.HUnit (hUnitTestToTests)
|
2016-06-02 15:31:22 +03:00
|
|
|
import AllTests
|
|
|
|
|
2016-06-05 00:23:09 +03:00
|
|
|
main :: IO ()
|
|
|
|
main = defaultMain $ hUnitTestToTests allTests
|