Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for NUnit Fixture parameter #591

Merged
merged 1 commit into from
Nov 12, 2014
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions src/app/FakeLib/UnitTest/NUnit/Common.fs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@ type NUnitParams =
TimeOut : TimeSpan
DisableShadowCopy : bool
Domain : NUnitDomainModel
ErrorLevel : NUnitErrorLevel }
ErrorLevel : NUnitErrorLevel
Fixture: string}

/// NUnit default parameters. FAKE tries to locate nunit-console.exe in any subfolder.
let NUnitDefaults =
Expand All @@ -75,7 +76,8 @@ let NUnitDefaults =
TimeOut = TimeSpan.FromMinutes 5.0
DisableShadowCopy = false
Domain = DefaultDomainModel
ErrorLevel = Error }
ErrorLevel = Error
Fixture = ""}

/// Builds the command line arguments from the given parameter record and the given assemblies.
/// [omit]
Expand All @@ -96,6 +98,7 @@ let buildNUnitdArgs parameters assemblies =
|> appendIfNotNullOrEmpty parameters.ProcessModel.ParamString "-process:"
|> appendIfNotNullOrEmpty parameters.ErrorOutputFile "-err:"
|> appendIfNotNullOrEmpty parameters.Domain.ParamString "-domain:"
|> appendIfNotNullOrEmpty parameters.Fixture "-fixture:"
|> toText

/// Tries to detect the working directory as specified in the parameters or via TeamCity settings
Expand Down