forked from TorXakis/TorXakis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCustomersOrders.hs
37 lines (30 loc) · 945 Bytes
/
CustomersOrders.hs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{-
TorXakis - Model Based Testing
Copyright (c) 2015-2017 TNO and Radboud University
See LICENSE at root directory of this repository.
-}
{-# LANGUAGE OverloadedStrings #-}
module Examples.CustomersOrders (exampleSet) where
import Examples.Paths
import Prelude hiding (FilePath)
import Sqatt
customersOrdersText :: Text
customersOrdersText = "CustomersOrders"
exampDir :: FilePath
exampDir = "CustomersOrders"
test :: TxsExample
test = emptyExample
{ exampleName = "Customers & Orders Test"
, txsModelFiles = [txsFilePath exampDir customersOrdersText]
, txsCmdsFiles = [txsCmdPath exampDir "CustomersOrders_Tester"]
, sutExample =
Just (JavaExample
(javaFilePath exampDir customersOrdersText)
[]
)
, expectedResult = Pass
}
examples :: [TxsExample]
examples = [test]
exampleSet :: TxsExampleSet
exampleSet = TxsExampleSet "Customers and Orders" examples