mirror of
https://github.com/facebook/duckling.git
synced 2024-12-02 22:46:17 +03:00
3f8e52e70a
fbshipit-source-id: 301a10f448e9623aa1c953544f42de562909e192
35 lines
944 B
Haskell
35 lines
944 B
Haskell
-- Copyright (c) 2016-present, Facebook, Inc.
|
|
-- All rights reserved.
|
|
--
|
|
-- This source code is licensed under the BSD-style license found in the
|
|
-- LICENSE file in the root directory of this source tree. An additional grant
|
|
-- of patent rights can be found in the PATENTS file in the same directory.
|
|
|
|
|
|
module Duckling.Volume.Tests (tests) where
|
|
|
|
import Prelude
|
|
import Data.String
|
|
import Test.Tasty
|
|
|
|
import qualified Duckling.Volume.EN.Tests as EN
|
|
import qualified Duckling.Volume.ES.Tests as ES
|
|
import qualified Duckling.Volume.FR.Tests as FR
|
|
import qualified Duckling.Volume.GA.Tests as GA
|
|
import qualified Duckling.Volume.KO.Tests as KO
|
|
import qualified Duckling.Volume.NL.Tests as NL
|
|
import qualified Duckling.Volume.PT.Tests as PT
|
|
import qualified Duckling.Volume.RO.Tests as RO
|
|
|
|
tests :: TestTree
|
|
tests = testGroup "Volume Tests"
|
|
[ EN.tests
|
|
, ES.tests
|
|
, FR.tests
|
|
, GA.tests
|
|
, KO.tests
|
|
, NL.tests
|
|
, PT.tests
|
|
, RO.tests
|
|
]
|