forked from DarthFubuMVC/fubumvc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Storyteller.xml
63 lines (59 loc) · 1.8 KB
/
Storyteller.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<?xml version="1.0"?>
<Project xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<Options>
<FileTemplate>using NUnit.Framework;
using StoryTeller.Execution;
namespace StoryTellerTestHarness
{
[TestFixture, Explicit]
public class Template
{
private ProjectTestRunner runner;
[TestFixtureSetUp]
public void SetupRunner()
{
runner = new ProjectTestRunner(@"$PROJECT_FILE$");
}
$METHODS$
[TestFixtureTearDown]
public void TeardownRunner()
{
runner.Dispose();
}
}
}</FileTemplate>
<MethodTemplate> [Test]
public void $CLEAN_TEST_NAME$()
{
runner.RunAndAssertTest("$TEST_PATH$");
}</MethodTemplate>
<TargetFile>StoryTellerDebug.cs</TargetFile>
</Options>
<Workspaces>
<WorkspaceFilter Name="HelloWorld">
<Actions />
<Filters>
<FixtureFilter Type="All" Name="ALL" />
</Filters>
</WorkspaceFilter>
<WorkspaceFilter Name="Packaging">
<Actions />
<Filters>
<FixtureFilter Type="All" Name="ALL" />
</Filters>
</WorkspaceFilter>
<WorkspaceFilter Name="Script Manager">
<Actions />
<Filters>
<FixtureFilter Type="All" Name="ALL" />
</Filters>
</WorkspaceFilter>
</Workspaces>
<ConfigurationFileName>IntegrationTesting.dll.config</ConfigurationFileName>
<BinaryFolder>src\StoryTellerTesting\bin\debug</BinaryFolder>
<TestFolder>src\StoryTellerTesting\Tests</TestFolder>
<FileName>C:\git\fubumvc\Storyteller.xml</FileName>
<TimeoutInSeconds>60</TimeoutInSeconds>
<SystemTypeName>IntegrationTesting.FubuSystem, IntegrationTesting</SystemTypeName>
<Name>FubuMVC</Name>
</Project>