summaryrefslogtreecommitdiff
path: root/tools/MbUnit/VSSnippets/MbUnitCSharpSnippets/processtestfixture.snippet
blob: c06df1f793a0ef2ca83386008fc2827945ac54c2 (plain)
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
64
65
66
67
68
69
70
71
72
<?xml version="1.0"?>
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
  <CodeSnippet Format="1.0.0">
    <Header>
      <Title>ProcessTestFixture</Title>
      <Author>MbUnit</Author>
      <HelpUrl>http://www.mertner.com/confluence/display/MbUnit/ProcessTestFixture</HelpUrl>
      <Shortcut>processfixture</Shortcut>
    </Header>
    <Snippet>
      <Declarations>
        <Literal>
          <ID>namespace</ID>
          <Default>MbUnitTests</Default>
        </Literal>
        <Literal>
          <ID>testName1</ID>
          <Default>Test1</Default>
        </Literal>
        <Literal>
          <ID>testName2</ID>
          <Default>Test2</Default>
        </Literal>
        <Literal>
          <ID>testName3</ID>
          <Default>Test3</Default>
        </Literal>
        <Literal>
          <ID>testName4</ID>
          <Default>Test4</Default>
        </Literal>
      </Declarations>
      <Code Language="CSharp"><![CDATA[using System;
using MbUnit.Framework;

namespace $namespace$
{
    [ProcessTestFixture]
    public class $type$Test
    {
        [Test]
        [TestSequence(1)]
        public void $testName1$()
        {

        }

        [Test]
        [TestSequence(2)]
        public void $testName2$()
        {

        }

        [Test]
        [TestSequence(3)]
        public void $testName3$()
        {

        }

        [Test]
        [TestSequence(4)]
        public void $testName4$()
        {

        }
    }
}]]></Code>
    </Snippet>
  </CodeSnippet>
</CodeSnippets>