Report abuse

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
73
74
75
76
77
<?xml version="1.0" encoding="utf-8" ?>
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
  <CodeSnippet Format="1.0.0">
    <Header>
      <Title>Assert Equality</Title>
      <Shortcut>ae</Shortcut>
      <Description>Code snippet for asserting equality</Description>
      <Author>Matt Grande</Author>
      <SnippetTypes>
        <SnippetType>Expansion</SnippetType>
      </SnippetTypes>
    </Header>
    <Snippet>
      <Declarations>
        <Literal>
          <ID>expected</ID>
          <ToolTip>The expected value</ToolTip>
          <Default>expected</Default>
        </Literal>
        <Literal>
          <ID>actual</ID>
          <ToolTip>The actual value</ToolTip>
          <Default>actual</Default>
        </Literal>
      </Declarations>
      <Code Language="csharp">
        <![CDATA[Assert.AreEqual($expected$, $actual$);]]>
      </Code>
    </Snippet>
  </CodeSnippet>
  <CodeSnippet Format="1.0.0">
    <Header>
      <Title>Assert True</Title>
      <Shortcut>ait</Shortcut>
      <Description>Code snippet for asserting truth</Description>
      <Author>Matt Grande</Author>
      <SnippetTypes>
        <SnippetType>Expansion</SnippetType>
      </SnippetTypes>
    </Header>
    <Snippet>
      <Declarations>
        <Literal>
          <ID>true</ID>
          <ToolTip>The value to compare to true</ToolTip>
          <Default>true</Default>
        </Literal>
      </Declarations>
      <Code Language="csharp">
        <![CDATA[Assert.IsTrue($true$);]]>
      </Code>
    </Snippet>
  </CodeSnippet>
  <CodeSnippet Format="1.0.0">
    <Header>
      <Title>Assert False</Title>
      <Shortcut>aif</Shortcut>
      <Description>Code snippet for asserting falsity</Description>
      <Author>Matt Grande</Author>
      <SnippetTypes>
        <SnippetType>Expansion</SnippetType>
      </SnippetTypes>
    </Header>
    <Snippet>
      <Declarations>
        <Literal>
          <ID>false</ID>
          <ToolTip>The value to compare to false</ToolTip>
          <Default>false</Default>
        </Literal>
      </Declarations>
      <Code Language="csharp">
        <![CDATA[Assert.IsFalse($false$);]]>
      </Code>
    </Snippet>
  </CodeSnippet>
</CodeSnippets>