FAKE - F# Make - A DSL for build tasks and more FAKE
6.1.3
Edit this page

Lookig for older versions of the documentation, pre FAKE v6? See 

v5.fake.build

Running Unit Tests using Fixie

FAKE can be used to run unit tests using the Fixie testing framework. Your can use it with FAKE in three steps: Create a test project, add Fixie to it, and add a FAKE script to call Fixie.

You can read up more on Fixie getting started guide here.

Sample usage

Create a FAKE script in the root directory of your test project and add the following sample Fixie target to it:

open Fake.Core
open Fake.Testing

Target.create "Fixie" (fun _ ->
Fixie.Fixie (fun p -> { p with CustomArguments = ["custom","1"; "test","2"] })
)

Target.runOrDefault "Fixie"

Arguments

You can provide the following arguments: