Created
November 16, 2017 12:57
-
-
Save lust4life/1a4c25ec3b0fdec0056172cf62cd135e to your computer and use it in GitHub Desktop.
For Expecto Plugin Test
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| open Expecto | |
| [<Tests>] | |
| let tests = | |
| testList "just some test" [ | |
| testList "and more and more test" [ | |
| testCase "1" <| fun _ -> () | |
| testCase "2" <| fun _ -> () | |
| ] | |
| testList "b" [ | |
| testCase "1" <| fun _ -> () | |
| testCase "2" <| fun _ -> () | |
| ] | |
| testList "and more and more test f" [ | |
| testCase "1" <| fun _ -> () | |
| testCase "2" <| fun _ -> () | |
| ] | |
| testList "and more and more test e" [ | |
| testCase "1" <| fun _ -> () | |
| testCase "2" <| fun _ -> () | |
| ] | |
| testList "and more and more test d" [ | |
| testCase "1" <| fun _ -> () | |
| testCase "2" <| fun _ -> () | |
| ] | |
| testList "and more and more test c" [ | |
| testCase "1" <| fun _ -> () | |
| testCase "2" <| fun _ -> () | |
| ] | |
| testList "and more and more test b" [ | |
| testCase "1" <| fun _ -> () | |
| testCase "2" <| fun _ -> () | |
| ] | |
| testList "and more and more test a" [ | |
| testCase "1" <| fun _ -> () | |
| testCase "2" <| fun _ -> () | |
| ] | |
| ftestList "..c" [ | |
| testCase "1" <| fun _ -> () | |
| testCase "2" <| fun _ -> Tests.failtest "..." | |
| ] | |
| ] | |
| [<EntryPoint>] | |
| let main argv = | |
| Tests.runTestsInAssembly defaultConfig argv | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment