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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
<html>
<!-- Standard Head Part -->
<head>
<title>NUnit - OptionsDialog</title>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<meta http-equiv="Content-Language" content="en-US">
<link rel="stylesheet" type="text/css" href="nunit.css">
<link rel="shortcut icon" href="favicon.ico">
</head>
<!-- End Standard Head Part -->
<body>
<!-- Standard Header for NUnit.org -->
<div id="header">
<a id="logo" href="http://www.nunit.org"><img src="img/logo.gif" alt="NUnit.org" title="NUnit.org"></a>
<div id="nav">
<a href="http://www.nunit.org">NUnit</a>
<a class="active" href="index.html">Documentation</a>
</div>
</div>
<!-- End of Header -->
<div id="content">
<h2>Options Dialog</h2>
<p>The Options Dialog is displayed using the Tools | Options menu item and allows the user to
control some aspects of NUnits operation.</p>
<hr><h3>Display Tab</h3><hr>
<div class="screenshot-right">
<img src="img/displayTab.jpg"></div>
<h3>Recent Files</h3>
<p>The text box allows the user to choose the number of entries to display in the recent files list.
If <b>Load most recent project at startup</b> is checked, the GUI will load the last file opened unless it
is run with a specific filename or with the <code>/noload</code> parameter.</p>
<h3>Tree View</h3>
<p>The list box allows selecting the degree of expansion of the tree when tests are loaded:</p>
<blockquote>
<p><b>Expand</b> expands all tests</p>
<p><b>Collapse</b> collapses all tests</p>
<p><b>Hide Tests</b> expands all suites except for the fixtures themselves.</p>
<p><b>Auto</b> selects one of the above based on the space available for the tree display.</p>
</blockquote>
<p>If <b>Clear results when reloading</b> is checked, an automatic or manual reload will reinitialize all
test nodes in the tree (grey display) if it is not checked, result information for tests that do
not seem to have changed will be retained.</p>
<h3>Test Output</h3>
<p>Check <b>Label Test Cases in Console output</b> to precede text in the output window with the name of the test that produced it.</p>
<p>Check <b>Display Failure ToolTips</b> to display the tip window over the
Errors and Failures display and the stack trace. Clear it if you prefer not
to see the tip window.</p>
<hr><h3>Tests Tab</h3><hr>
<div class="screenshot-right">
<img src="img/testsTab.jpg"></div>
<h3>Test Structure</h3>
<p>If <b>Automatic Namespace suites</b> is selected, tests will be
shown in a hierarchical listing based on namespaces. This is the
standard display as used in versions prior to NUnit 2.4.
<p>If <b>Flat list of TestFixtures</b> is selected, tests will be
shown as a sequential list of fixtures.
<h3>Multiple Assemblies</h3>
<p>If <b>Load in separate AppDomains</b> is selected, each assembly
in a multiple-assembly test run will be loaded in a separate AppDomain.
<p>If <b>Load in a single AppDomain</b> is selected, all assemblies in
a multiple-assembly test run will use the same AppDomain. This is
the standard behavior of NUnit prior to version 2.4.
<p>If <b>Merge tests across assemblies</b> is checked, the display of tests
will not be divided across assemblies. If automatic namespace suites are
used, they will be merged across all assemblies. This option is only
available when tests are run in the same appdomain.
<h3>Assembly Reload</h3>
<p>If <b>Reload before each test run</b> is checked, a reload will occur whenever the run button is
pressed whether the assemblies appear to have changed or not.</p>
<p>If <b>Reload when test assembly changes</b> is checked, assemblies are watched for any change and
an automatic reload is initiated. This item is disabled on Windows 98 or ME.</p>
<p>If <b>Re-run tests automatically</b> is checked, tests are re-run whenever a Reload
takes place.</p>
<h3>Visual Studio</h3>
<p>If <b>Enable Visual Studio Support</b> is checked, the user will be able to open Visual Studio projects
and solutions and add Visual Studio projects to existing test projects.</p>
</div>
<!-- Submenu -->
<div id="subnav">
<ul>
<li><a href="index.html">NUnit 2.4 Beta 1 Release</a></li>
<ul>
<li><a href="getStarted.html">Getting Started</a></li>
<li><a href="installation.html">Installation</a></li>
<li><a href="features.html">Features</a></li>
<li><a href="nunit-console.html">Console Runner</a></li>
<li><a href="nunit-gui.html">Gui Runner</a></li>
<ul>
<li><a href="guiCommandLine.html">Command-Line</a></li>
<li><a href="mainMenu.html">Main Menu</a></li>
<li><a href="contextMenu.html">Context Menu</a></li>
<li id="current"><a href="optionsDialog.html">Options Dialog</a></li>
<li><a href="testProperties.html">Test Properties</a></li>
<li><a href="configEditor.html">Configuration Editor</a></li>
<li><a href="projectEditor.html">Project Editor</a></li>
</ul>
<li><a href="releaseNotes.html">Release Notes</a></li>
<li><a href="samples.html">Samples</a></li>
<li><a href="license.html">License</a></li>
</ul>
</ul>
</div>
<!-- End of Submenu -->
<!-- Standard Footer for NUnit.org -->
<div id="footer">
Copyright © 2002-2005. All Rights Reserved.
</div>
<!-- End of Footer -->
</body>
</html>
|