Skip to content

Instantly share code, notes, and snippets.

@lust4life
Created November 16, 2017 12:57
Show Gist options
  • Select an option

  • Save lust4life/1a4c25ec3b0fdec0056172cf62cd135e to your computer and use it in GitHub Desktop.

Select an option

Save lust4life/1a4c25ec3b0fdec0056172cf62cd135e to your computer and use it in GitHub Desktop.
For Expecto Plugin Test
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