~ubuntu-branches/debian/sid/nunit/sid

« back to all changes in this revision

Viewing changes to doc/ignore.html

  • Committer: Package Import Robot
  • Author(s): Jo Shields
  • Date: 2014-09-16 13:43:36 UTC
  • mfrom: (1.1.5)
  • Revision ID: package-import@ubuntu.com-20140916134336-kjxz48tty6lx2ja5
Tags: 2.6.3+dfsg-1
* [c7bd1b5] Imported Upstream version 2.6.3+dfsg
* [bcb4bf8] Move nunit-console-runner to GAC-installed libnunit2.6, 
  don't treat it as a private lib. This lib is signed, and treated 
  as a GAC lib by consumers such as MonoDevelop.
* [7f08e99] Bump version to 2.6.3 as required
* [84535eb] Refreshed patches
* [8479f61] Split package up into per-assembly packages. This makes 
  ABI tracking easier in the future, as we can meaningfully have GAC 
  policy for cases where ABI isn't truly bumped, and no policy for 
  cases where it is. For example, if nunit.framework bumps ABI but 
  nunit.core does not, previously we would need to rebuild everything 
  using NUnit, but under the new split packaging, that rebuild would 
  not be needed for apps only using nunit.core.
* [17a7dc7] Add missing nunit.mocks.dll to nunit.pc

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<!-- saved from url=(0014)about:internet --><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
2
 
<html>
3
 
<!-- Standard Head Part -->
4
 
<head>
5
 
<title>NUnit - Ignore</title>
6
 
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
7
 
<meta http-equiv="Content-Language" content="en-US">
8
 
<meta name="norton-safeweb-site-verification" content="tb6xj01p4hgo5x-8wscsmq633y11-e6nhk-bnb5d987bseanyp6p0uew-pec8j963qlzj32k5x9h3r2q7wh-vmy8bbhek5lnpp5w4p8hocouuq39e09jrkihdtaeknua" />
9
 
<link rel="stylesheet" type="text/css" href="nunit.css">
10
 
<link rel="shortcut icon" href="favicon.ico">
11
 
</head>
12
 
<!-- End Standard Head Part -->
13
 
 
14
 
<body>
15
 
 
16
 
<!-- Standard Header for NUnit.org -->
17
 
<div id="header">
18
 
  <a id="logo" href="http://www.nunit.org"><img src="img/logo.gif" alt="NUnit.org" title="NUnit.org"></a>
 
1
<!-- saved from url=(0014)about:internet --><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
 
2
<html>
 
3
<!-- Standard Head Part -->
 
4
<head>
 
5
<title>NUnit - Ignore</title>
 
6
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
 
7
<meta http-equiv="Content-Language" content="en-US">
 
8
<meta name="norton-safeweb-site-verification" content="tb6xj01p4hgo5x-8wscsmq633y11-e6nhk-bnb5d987bseanyp6p0uew-pec8j963qlzj32k5x9h3r2q7wh-vmy8bbhek5lnpp5w4p8hocouuq39e09jrkihdtaeknua" />
 
9
<link rel="stylesheet" type="text/css" href="nunit.css">
 
10
<link rel="shortcut icon" href="favicon.ico">
 
11
</head>
 
12
<!-- End Standard Head Part -->
 
13
 
 
14
<body>
 
15
 
 
16
<!-- Standard Header for NUnit.org -->
 
17
<div id="header">
 
18
  <a id="logo" href="http://www.nunit.org"><img src="img/logo.gif" alt="NUnit.org" title="NUnit.org"></a>
19
19
  <div id="nav">
20
20
    <a href="http://www.nunit.org">NUnit</a>
21
21
    <a class="active" href="index.html">Documentation</a>
22
 
  </div>
23
 
</div>
24
 
<!-- End of Header -->
25
 
 
26
 
<div id="content">
27
 
 
28
 
<script language="JavaScript" src="codeFuncs.js" ></script> <!-- Do it this way for IE -->
29
 
 
30
 
<h3>IgnoreAttribute (NUnit 2.0)</h3>
31
 
 
32
 
<p>The ignore attribute is an attribute to not run a test or test fixture for a 
33
 
        period of time. The person marks either a Test or a TestFixture with the Ignore 
34
 
        Attribute. The running program sees the attribute and does not run the test or 
35
 
        tests. The progress bar will turn yellow if a test is not run and the test will 
36
 
        be mentioned in the reports that it was not run.</p>
37
 
 
38
 
<p>This feature should be used to temporarily not run a test or fixture. This is a 
39
 
        better mechanism than commenting out the test or renaming methods, since the 
40
 
        tests will be compiled with the rest of the code and there is an indication at 
41
 
        run time that a test is not being run. This insures that tests will not be 
42
 
        forgotten.</p>
43
 
 
44
 
<h4>Test Fixture Syntax</h4>
45
 
 
46
 
<div class="code">
47
 
 
48
 
<div class="langFilter">
49
 
        <a href="javascript:Show('DD1')" onmouseover="Show('DD1')"><img src="img/langFilter.gif" width="14" height="14" alt="Language Filter"></a>
50
 
        <div id="DD1" class="dropdown" style="display: none;" onclick="Hide('DD1')">
51
 
                <a href="javascript:ShowCS()">C#</a><br>
52
 
                <a href="javascript:ShowVB()">VB</a><br>
53
 
                <a href="javascript:ShowMC()">C++</a><br>
54
 
                <a href="javascript:ShowJS()">J#</a><br>
55
 
        </div>
56
 
</div>
57
 
 
58
 
<pre class="cs">namespace NUnit.Tests
59
 
{
60
 
  using System;
61
 
  using NUnit.Framework;
62
 
 
63
 
  [TestFixture]
64
 
  [Ignore(&quot;Ignore a fixture&quot;)]
65
 
  public class SuccessTests
66
 
  {
67
 
    // ...
68
 
  }
69
 
}
70
 
</pre>
71
 
 
72
 
<pre class="vb">Imports System
73
 
Imports Nunit.Framework
74
 
 
75
 
Namespace Nunit.Tests
76
 
 
77
 
  &lt;TestFixture(), Ignore(&quot;Ignore a fixture&quot;)&gt;
78
 
  Public Class SuccessTests
79
 
    &#39; ...
80
 
  End Class
81
 
End Namespace
82
 
</pre>
83
 
 
84
 
<pre class="mc">#using &lt;Nunit.Framework.dll&gt;
85
 
using namespace System;
86
 
using namespace NUnit::Framework;
87
 
 
88
 
namespace NUnitTests
89
 
{
90
 
  [TestFixture]
91
 
  [Ignore(&quot;Ignore a fixture&quot;)]
92
 
  public __gc class SuccessTests
93
 
  {
94
 
    // ...
95
 
  };
96
 
}
97
 
 
98
 
#include &quot;cppsample.h&quot;
99
 
 
100
 
namespace NUnitTests {
101
 
  // ...
102
 
}
103
 
</pre>
104
 
 
105
 
<pre class="js">package NUnit.Tests;
106
 
 
107
 
import System.*;
108
 
import NUnit.Framework.TestFixture;
109
 
 
110
 
 
111
 
/** @attribute NUnit.Framework.TestFixture() */
112
 
/** @attribute NUnit.Framework.Ignore(&quot;Ignore a fixture&quot;) */
113
 
public class SuccessTests
114
 
{
115
 
  // ...
116
 
}
117
 
</pre>
118
 
        
119
 
</div>
120
 
 
121
 
<h4>Test Syntax</h4>
122
 
 
123
 
<div class="code">
124
 
 
125
 
<div class="langFilter">
126
 
        <a href="javascript:Show('DD2')" onmouseover="Show('DD2')"><img src="img/langFilter.gif" width="14" height="14" alt="Language Filter"></a>
127
 
        <div id="DD2" class="dropdown" style="display: none;" onclick="Hide('DD2')">
128
 
                <a href="javascript:ShowCS()">C#</a><br>
129
 
                <a href="javascript:ShowVB()">VB</a><br>
130
 
                <a href="javascript:ShowMC()">C++</a><br>
131
 
                <a href="javascript:ShowJS()">J#</a><br>
132
 
        </div>
133
 
</div>
134
 
 
135
 
<pre class="cs">namespace NUnit.Tests
136
 
{
137
 
  using System;
138
 
  using NUnit.Framework;
139
 
 
140
 
  [TestFixture]
141
 
  public class SuccessTests
142
 
  {
143
 
    [Test]
144
 
    [Ignore(&quot;Ignore a test&quot;)]
145
 
    public void IgnoredTest()
146
 
    { /* ... */ }
147
 
}
148
 
</pre>
149
 
 
150
 
<pre class="vb">Imports System
151
 
Imports Nunit.Framework
152
 
 
153
 
Namespace Nunit.Tests
154
 
 
155
 
  &lt;TestFixture()&gt;
156
 
  Public Class SuccessTests
157
 
    &lt;Test(), Ignore(&quot;Ignore a test&quot;)&gt; Public Sub Ignored()
158
 
      &#39; ...
159
 
    End Sub
160
 
  End Class
161
 
End Namespace
162
 
</pre>
163
 
 
164
 
<pre class="mc">#using &lt;Nunit.Framework.dll&gt;
165
 
using namespace System;
166
 
using namespace NUnit::Framework;
167
 
 
168
 
namespace NUnitTests
169
 
{
170
 
  [TestFixture]
171
 
  public __gc class SuccessTests
172
 
  {
173
 
    [Test][Ignore(&quot;Ignore a test&quot;)] void IgnoredTest();
174
 
  };
175
 
}
176
 
 
177
 
#include &quot;cppsample.h&quot;
178
 
 
179
 
namespace NUnitTests {
180
 
  // ...
181
 
}
182
 
</pre>
183
 
 
184
 
<pre class="js">package NUnit.Tests;
185
 
 
186
 
import System.*;
187
 
import NUnit.Framework.TestFixture;
188
 
 
189
 
 
190
 
/** @attribute NUnit.Framework.TestFixture() */
191
 
public class SuccessTests
192
 
{
193
 
  /** @attribute NUnit.Framework.Test() */
194
 
  /** @attribute NUnit.Framework.Ignore(&quot;ignored test&quot;) */
195
 
  public void IgnoredTest()
196
 
  { /* ... */ }
197
 
}
198
 
</pre>
199
 
 
200
 
</div>
201
 
 
202
 
</div>
203
 
 
204
 
<!-- Submenu -->
205
 
<div id="subnav">
206
 
<ul>
207
 
<li><a href="index.html">NUnit 2.6</a></li>
208
 
<ul>
209
 
<li><a href="getStarted.html">Getting&nbsp;Started</a></li>
210
 
<li><a href="writingTests.html">Writing&nbsp;Tests</a></li>
211
 
<ul>
212
 
<li><a href="assertions.html">Assertions</a></li>
213
 
<li><a href="attributes.html">Attributes</a></li>
214
 
<ul>
215
 
<li><a href="actionAttributes.html">Action&nbsp;Attributes</a></li>
216
 
<li><a href="category.html">Category</a></li>
217
 
<li><a href="combinatorial.html">Combinatorial</a></li>
218
 
<li><a href="culture.html">Culture</a></li>
219
 
<li><a href="datapoint.html">Datapoint(s)</a></li>
220
 
<li><a href="description.html">Description</a></li>
221
 
<li><a href="exception.html">Exception</a></li>
222
 
<li><a href="explicit.html">Explicit</a></li>
223
 
<li id="current"><a href="ignore.html">Ignore</a></li>
224
 
<li><a href="maxtime.html">Maxtime</a></li>
225
 
<li><a href="pairwise.html">Pairwise</a></li>
226
 
<li><a href="platform.html">Platform</a></li>
227
 
<li><a href="property.html">Property</a></li>
228
 
<li><a href="random.html">Random</a></li>
229
 
<li><a href="range.html">Range</a></li>
230
 
<li><a href="repeat.html">Repeat</a></li>
231
 
<li><a href="requiredAddin.html">RequiredAddin</a></li>
232
 
<li><a href="requiresMTA.html">Requires&nbsp;MTA</a></li>
233
 
<li><a href="requiresSTA.html">Requires&nbsp;STA</a></li>
234
 
<li><a href="requiresThread.html">Requires&nbsp;Thread</a></li>
235
 
<li><a href="sequential.html">Sequential</a></li>
236
 
<li><a href="setCulture.html">SetCulture</a></li>
237
 
<li><a href="setUICulture.html">SetUICulture</a></li>
238
 
<li><a href="setup.html">Setup</a></li>
239
 
<li><a href="setupFixture.html">SetupFixture</a></li>
240
 
<li><a href="suite.html">Suite</a></li>
241
 
<li><a href="teardown.html">Teardown</a></li>
242
 
<li><a href="test.html">Test</a></li>
243
 
<li><a href="testCase.html">TestCase</a></li>
244
 
<li><a href="testCaseSource.html">TestCaseSource</a></li>
245
 
<li><a href="testFixture.html">TestFixture</a></li>
246
 
<li><a href="fixtureSetup.html">TestFixtureSetUp</a></li>
247
 
<li><a href="fixtureTeardown.html">TestFixtureTearDown</a></li>
248
 
<li><a href="theory.html">Theory</a></li>
249
 
<li><a href="timeout.html">Timeout</a></li>
250
 
<li><a href="values.html">Values</a></li>
251
 
<li><a href="valueSource.html">ValueSource</a></li>
252
 
</ul>
253
 
<li><a href="constraintModel.html">Constraints</a></li>
254
 
<li><a href="testContext.html">Test&nbsp;Context</a></li>
255
 
</ul>
256
 
<li><a href="runningTests.html">Running&nbsp;Tests</a></li>
257
 
<li><a href="extensibility.html">Extensibility</a></li>
258
 
<li><a href="releaseNotes.html">Release&nbsp;Notes</a></li>
259
 
<li><a href="samples.html">Samples</a></li>
260
 
<li><a href="license.html">License</a></li>
261
 
</ul>
262
 
<li><a href="vsTestAdapter.html">NUnit&nbsp;Test&nbsp;Adapter&nbsp;0.90</a></li>
263
 
<ul>
264
 
<li><a href="vsTestAdapterLicense.html">License</a></li>
265
 
</ul>
266
 
<li><a href="&r=2.6.html"></a></li>
267
 
<li><a href="&r=2.6.html"></a></li>
268
 
</ul>
269
 
</div>
270
 
<!-- End of Submenu -->
271
 
 
272
 
 
273
 
<!-- Standard Footer for NUnit.org -->
274
 
<div id="footer">
275
 
  Copyright &copy; 2012 Charlie Poole. All Rights Reserved.
276
 
</div>
277
 
<!-- End of Footer -->
278
 
 
279
 
</body>
280
 
</html>
 
22
  </div>
 
23
</div>
 
24
<!-- End of Header -->
 
25
 
 
26
<div id="content">
 
27
 
 
28
<script language="JavaScript" src="codeFuncs.js" ></script> <!-- Do it this way for IE -->
 
29
 
 
30
<h3>IgnoreAttribute (NUnit 2.0)</h3>
 
31
 
 
32
<p>The ignore attribute is an attribute to not run a test or test fixture for a 
 
33
        period of time. The person marks either a Test or a TestFixture with the Ignore 
 
34
        Attribute. The running program sees the attribute and does not run the test or 
 
35
        tests. The progress bar will turn yellow if a test is not run and the test will 
 
36
        be mentioned in the reports that it was not run.</p>
 
37
 
 
38
<p>This feature should be used to temporarily not run a test or fixture. This is a 
 
39
        better mechanism than commenting out the test or renaming methods, since the 
 
40
        tests will be compiled with the rest of the code and there is an indication at 
 
41
        run time that a test is not being run. This insures that tests will not be 
 
42
        forgotten.</p>
 
43
 
 
44
<h4>Test Fixture Syntax</h4>
 
45
 
 
46
<div class="code">
 
47
 
 
48
<div class="langFilter">
 
49
        <a href="javascript:Show('DD1')" onmouseover="Show('DD1')"><img src="img/langFilter.gif" width="14" height="14" alt="Language Filter"></a>
 
50
        <div id="DD1" class="dropdown" style="display: none;" onclick="Hide('DD1')">
 
51
                <a href="javascript:ShowCS()">C#</a><br>
 
52
                <a href="javascript:ShowVB()">VB</a><br>
 
53
                <a href="javascript:ShowMC()">C++</a><br>
 
54
                <a href="javascript:ShowJS()">J#</a><br>
 
55
        </div>
 
56
</div>
 
57
 
 
58
<pre class="cs">namespace NUnit.Tests
 
59
{
 
60
  using System;
 
61
  using NUnit.Framework;
 
62
 
 
63
  [TestFixture]
 
64
  [Ignore(&quot;Ignore a fixture&quot;)]
 
65
  public class SuccessTests
 
66
  {
 
67
    // ...
 
68
  }
 
69
}
 
70
</pre>
 
71
 
 
72
<pre class="vb">Imports System
 
73
Imports Nunit.Framework
 
74
 
 
75
Namespace Nunit.Tests
 
76
 
 
77
  &lt;TestFixture(), Ignore(&quot;Ignore a fixture&quot;)&gt;
 
78
  Public Class SuccessTests
 
79
    &#39; ...
 
80
  End Class
 
81
End Namespace
 
82
</pre>
 
83
 
 
84
<pre class="mc">#using &lt;Nunit.Framework.dll&gt;
 
85
using namespace System;
 
86
using namespace NUnit::Framework;
 
87
 
 
88
namespace NUnitTests
 
89
{
 
90
  [TestFixture]
 
91
  [Ignore(&quot;Ignore a fixture&quot;)]
 
92
  public __gc class SuccessTests
 
93
  {
 
94
    // ...
 
95
  };
 
96
}
 
97
 
 
98
#include &quot;cppsample.h&quot;
 
99
 
 
100
namespace NUnitTests {
 
101
  // ...
 
102
}
 
103
</pre>
 
104
 
 
105
<pre class="js">package NUnit.Tests;
 
106
 
 
107
import System.*;
 
108
import NUnit.Framework.TestFixture;
 
109
 
 
110
 
 
111
/** @attribute NUnit.Framework.TestFixture() */
 
112
/** @attribute NUnit.Framework.Ignore(&quot;Ignore a fixture&quot;) */
 
113
public class SuccessTests
 
114
{
 
115
  // ...
 
116
}
 
117
</pre>
 
118
        
 
119
</div>
 
120
 
 
121
<h4>Test Syntax</h4>
 
122
 
 
123
<div class="code">
 
124
 
 
125
<div class="langFilter">
 
126
        <a href="javascript:Show('DD2')" onmouseover="Show('DD2')"><img src="img/langFilter.gif" width="14" height="14" alt="Language Filter"></a>
 
127
        <div id="DD2" class="dropdown" style="display: none;" onclick="Hide('DD2')">
 
128
                <a href="javascript:ShowCS()">C#</a><br>
 
129
                <a href="javascript:ShowVB()">VB</a><br>
 
130
                <a href="javascript:ShowMC()">C++</a><br>
 
131
                <a href="javascript:ShowJS()">J#</a><br>
 
132
        </div>
 
133
</div>
 
134
 
 
135
<pre class="cs">namespace NUnit.Tests
 
136
{
 
137
  using System;
 
138
  using NUnit.Framework;
 
139
 
 
140
  [TestFixture]
 
141
  public class SuccessTests
 
142
  {
 
143
    [Test]
 
144
    [Ignore(&quot;Ignore a test&quot;)]
 
145
    public void IgnoredTest()
 
146
    { /* ... */ }
 
147
}
 
148
</pre>
 
149
 
 
150
<pre class="vb">Imports System
 
151
Imports Nunit.Framework
 
152
 
 
153
Namespace Nunit.Tests
 
154
 
 
155
  &lt;TestFixture()&gt;
 
156
  Public Class SuccessTests
 
157
    &lt;Test(), Ignore(&quot;Ignore a test&quot;)&gt; Public Sub Ignored()
 
158
      &#39; ...
 
159
    End Sub
 
160
  End Class
 
161
End Namespace
 
162
</pre>
 
163
 
 
164
<pre class="mc">#using &lt;Nunit.Framework.dll&gt;
 
165
using namespace System;
 
166
using namespace NUnit::Framework;
 
167
 
 
168
namespace NUnitTests
 
169
{
 
170
  [TestFixture]
 
171
  public __gc class SuccessTests
 
172
  {
 
173
    [Test][Ignore(&quot;Ignore a test&quot;)] void IgnoredTest();
 
174
  };
 
175
}
 
176
 
 
177
#include &quot;cppsample.h&quot;
 
178
 
 
179
namespace NUnitTests {
 
180
  // ...
 
181
}
 
182
</pre>
 
183
 
 
184
<pre class="js">package NUnit.Tests;
 
185
 
 
186
import System.*;
 
187
import NUnit.Framework.TestFixture;
 
188
 
 
189
 
 
190
/** @attribute NUnit.Framework.TestFixture() */
 
191
public class SuccessTests
 
192
{
 
193
  /** @attribute NUnit.Framework.Test() */
 
194
  /** @attribute NUnit.Framework.Ignore(&quot;ignored test&quot;) */
 
195
  public void IgnoredTest()
 
196
  { /* ... */ }
 
197
}
 
198
</pre>
 
199
 
 
200
</div>
 
201
 
 
202
</div>
 
203
 
 
204
<!-- Submenu -->
 
205
<div id="subnav">
 
206
<ul>
 
207
<li><a href="index.html">NUnit 2.6.3</a></li>
 
208
<ul>
 
209
<li><a href="getStarted.html">Getting&nbsp;Started</a></li>
 
210
<li><a href="writingTests.html">Writing&nbsp;Tests</a></li>
 
211
<ul>
 
212
<li><a href="assertions.html">Assertions</a></li>
 
213
<li><a href="attributes.html">Attributes</a></li>
 
214
<ul>
 
215
<li><a href="actionAttributes.html">Action&nbsp;Attributes</a></li>
 
216
<li><a href="category.html">Category</a></li>
 
217
<li><a href="combinatorial.html">Combinatorial</a></li>
 
218
<li><a href="culture.html">Culture</a></li>
 
219
<li><a href="datapoint.html">Datapoint(s)</a></li>
 
220
<li><a href="description.html">Description</a></li>
 
221
<li><a href="exception.html">Exception</a></li>
 
222
<li><a href="explicit.html">Explicit</a></li>
 
223
<li id="current"><a href="ignore.html">Ignore</a></li>
 
224
<li><a href="maxtime.html">Maxtime</a></li>
 
225
<li><a href="pairwise.html">Pairwise</a></li>
 
226
<li><a href="platform.html">Platform</a></li>
 
227
<li><a href="property.html">Property</a></li>
 
228
<li><a href="random.html">Random</a></li>
 
229
<li><a href="range.html">Range</a></li>
 
230
<li><a href="repeat.html">Repeat</a></li>
 
231
<li><a href="requiredAddin.html">RequiredAddin</a></li>
 
232
<li><a href="requiresMTA.html">Requires&nbsp;MTA</a></li>
 
233
<li><a href="requiresSTA.html">Requires&nbsp;STA</a></li>
 
234
<li><a href="requiresThread.html">Requires&nbsp;Thread</a></li>
 
235
<li><a href="sequential.html">Sequential</a></li>
 
236
<li><a href="setCulture.html">SetCulture</a></li>
 
237
<li><a href="setUICulture.html">SetUICulture</a></li>
 
238
<li><a href="setup.html">Setup</a></li>
 
239
<li><a href="setupFixture.html">SetupFixture</a></li>
 
240
<li><a href="suite.html">Suite</a></li>
 
241
<li><a href="teardown.html">Teardown</a></li>
 
242
<li><a href="test.html">Test</a></li>
 
243
<li><a href="testCase.html">TestCase</a></li>
 
244
<li><a href="testCaseSource.html">TestCaseSource</a></li>
 
245
<li><a href="testFixture.html">TestFixture</a></li>
 
246
<li><a href="fixtureSetup.html">TestFixtureSetUp</a></li>
 
247
<li><a href="fixtureTeardown.html">TestFixtureTearDown</a></li>
 
248
<li><a href="theory.html">Theory</a></li>
 
249
<li><a href="timeout.html">Timeout</a></li>
 
250
<li><a href="values.html">Values</a></li>
 
251
<li><a href="valueSource.html">ValueSource</a></li>
 
252
</ul>
 
253
<li><a href="testContext.html">Test&nbsp;Context</a></li>
 
254
</ul>
 
255
<li><a href="runningTests.html">Running&nbsp;Tests</a></li>
 
256
<li><a href="extensibility.html">Extensibility</a></li>
 
257
<li><a href="releaseNotes.html">Release&nbsp;Notes</a></li>
 
258
<li><a href="samples.html">Samples</a></li>
 
259
<li><a href="license.html">License</a></li>
 
260
</ul>
 
261
<li><a href="vsTestAdapter.html">NUnit&nbsp;Test&nbsp;Adapter</a></li>
 
262
<ul>
 
263
<li><a href="vsTestAdapterLicense.html">License</a></li>
 
264
<li><a href="vsTestAdapterReleaseNotes.html">Release&nbsp;Notes</a></li>
 
265
</ul>
 
266
<li><a href="&r=2.6.3.html"></a></li>
 
267
<li><a href="&r=2.6.3.html"></a></li>
 
268
</ul>
 
269
</div>
 
270
<!-- End of Submenu -->
 
271
 
 
272
 
 
273
<!-- Standard Footer for NUnit.org -->
 
274
<div id="footer">
 
275
  Copyright &copy; 2012 Charlie Poole. All Rights Reserved.
 
276
</div>
 
277
<!-- End of Footer -->
 
278
 
 
279
</body>
 
280
</html>