Created
July 27, 2011 15:26
-
-
Save yevhen/1109611 to your computer and use it in GitHub Desktop.
NUnit support for Greg Young's Simple.Testing "framework"
This file contains 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
[TestFixture] | |
public class SpecificationFixture | |
{ | |
[Test, TestCaseSource("GetSpecificationTestCases")] | |
public void Verify(SpecificationToRun spec) | |
{ | |
var runner = new SpecificationRunner(); | |
RunResult result = runner.RunSpecifciation(spec); | |
if (result.Passed) | |
return; | |
Assert.Fail(Format(result)); | |
} | |
public TestCaseData[] GetSpecificationTestCases() | |
{ | |
IEnumerable<SpecificationToRun> specs = TypeReader.GetSpecificationsIn(GetType()); | |
return specs.Select(AsTestCaseData).ToArray(); | |
} | |
static TestCaseData AsTestCaseData(SpecificationToRun spec) | |
{ | |
var data = new TestCaseData(spec); | |
data.SetName(spec.Specification.GetName()); | |
return data; | |
} | |
private static string Format(RunResult result) | |
{ | |
var ret = "\n\nSPECIFICATION: " + (result.SpecificationName ?? result.FoundOnMemberInfo.Name) + " "; | |
ret += (result.Passed ? "PASSED" : "FAILED") + " " + result.Message + "\n\n"; | |
if (result.Thrown != null) | |
ret += result.Thrown + "\n\n"; | |
ret += "\tEXPECTATIONS:\n\t-------------\n"; | |
foreach (var exp in result.Expectations) | |
{ | |
if (!exp.Passed) | |
ret += "\n\t<<<----------\n"; | |
ret += "\t" + exp.Text + " " + (exp.Passed ? "PASSED" : "FAILED") + "\n"; | |
if (!exp.Passed) | |
{ | |
ret += PadMultiLineText(exp.Exception.Message) + "\n\n"; | |
ret += "\t>>>----------\n\n"; | |
} | |
} | |
return ret; | |
} | |
static string PadMultiLineText(string txt) | |
{ | |
string[] lines = txt.Split(new[] {"\n"}, StringSplitOptions.None); | |
return lines.Aggregate("", (current, line) => current + ("\t" + line + "\n")); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment