dolphindeploy 0.0.2-universal-dotnet

Sign up to get free protection for your applications and to get access to all the features.
Files changed (86) hide show
  1. data/README.markdown +9 -0
  2. data/TODO +18 -0
  3. data/external/DolphinDeploy.IIS.IIS6.dll +0 -0
  4. data/external/Microsoft.Web.Administration.dll +0 -0
  5. data/external/TinySharpZip.dll +0 -0
  6. data/external/adsutil.vbs +2938 -0
  7. data/external/xunit/HTML.xslt +117 -0
  8. data/external/xunit/NUnitXml.xslt +121 -0
  9. data/external/xunit/xunit.console.exe +0 -0
  10. data/external/xunit/xunit.console.exe.config +21 -0
  11. data/external/xunit/xunit.console.x86.exe +0 -0
  12. data/external/xunit/xunit.console.x86.exe.config +21 -0
  13. data/external/xunit/xunit.dll +0 -0
  14. data/external/xunit/xunit.dll.tdnet +5 -0
  15. data/external/xunit/xunit.extensions.dll +0 -0
  16. data/external/xunit/xunit.extensions.xml +706 -0
  17. data/external/xunit/xunit.gui.exe +0 -0
  18. data/external/xunit/xunit.gui.x86.exe +0 -0
  19. data/external/xunit/xunit.installer.exe +0 -0
  20. data/external/xunit/xunit.runner.msbuild.dll +0 -0
  21. data/external/xunit/xunit.runner.tdnet.dll +0 -0
  22. data/external/xunit/xunit.runner.utility.dll +0 -0
  23. data/external/xunit/xunit.runner.utility.xml +1048 -0
  24. data/external/xunit/xunit.xml +2306 -0
  25. data/lib/IIS/IIS.rb +23 -0
  26. data/lib/IIS/IIS6.rb +165 -0
  27. data/lib/IIS/IIS7.rb +152 -0
  28. data/lib/IIS/IISVersion.rb +7 -0
  29. data/lib/configured_as/mvc_deployment.rb +174 -0
  30. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.5.1.ReSharper.user +45 -0
  31. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/AppPoolControllerTests.cs +39 -0
  32. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/DolphinDeploy.IIS.IIS6.Tests.csproj +69 -0
  33. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/DolphinDeploy.IIS.IIS6.Tests.csproj.user +6 -0
  34. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/Helper.cs +18 -0
  35. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/Properties/AssemblyInfo.cs +36 -0
  36. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/WebsiteControllerTests.cs +56 -0
  37. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/bin/Debug/DolphinDeploy.IIS.IIS6.Tests.dll +0 -0
  38. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/bin/Debug/DolphinDeploy.IIS.IIS6.Tests.pdb +0 -0
  39. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/bin/Debug/DolphinDeploy.IIS.IIS6.dll +0 -0
  40. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/bin/Debug/DolphinDeploy.IIS.IIS6.pdb +0 -0
  41. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/bin/Debug/test_site/index.htm +9 -0
  42. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/bin/Debug/xunit.dll +0 -0
  43. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/bin/Debug/xunit.xml +2306 -0
  44. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache +0 -0
  45. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/obj/Debug/DolphinDeploy.IIS.IIS6.Tests.csproj.FileListAbsolute.txt +12 -0
  46. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/obj/Debug/DolphinDeploy.IIS.IIS6.Tests.dll +0 -0
  47. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/obj/Debug/DolphinDeploy.IIS.IIS6.Tests.pdb +0 -0
  48. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/obj/Debug/ResolveAssemblyReference.cache +0 -0
  49. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/test_site/index.htm +9 -0
  50. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.sln +26 -0
  51. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.suo +0 -0
  52. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6/AppPoolController.cs +41 -0
  53. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.csproj +56 -0
  54. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6/IIS6Manager.cs +77 -0
  55. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6/Properties/AssemblyInfo.cs +36 -0
  56. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6/WebsiteController.cs +101 -0
  57. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6/bin/Debug/DolphinDeploy.IIS.IIS6.dll +0 -0
  58. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6/bin/Debug/DolphinDeploy.IIS.IIS6.pdb +0 -0
  59. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache +0 -0
  60. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6/obj/Debug/DolphinDeploy.IIS.IIS6.csproj.FileListAbsolute.txt +7 -0
  61. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6/obj/Debug/DolphinDeploy.IIS.IIS6.dll +0 -0
  62. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6/obj/Debug/DolphinDeploy.IIS.IIS6.pdb +0 -0
  63. data/lib/csharp/DolphinDeploy.IIS.IIS6/_ReSharper.DolphinDeploy.IIS.IIS6/BuildScriptCache/1/78fc7364.dat +0 -0
  64. data/lib/csharp/DolphinDeploy.IIS.IIS6/_ReSharper.DolphinDeploy.IIS.IIS6/ModuleIds.xml +4 -0
  65. data/lib/csharp/DolphinDeploy.IIS.IIS6/_ReSharper.DolphinDeploy.IIS.IIS6/NamedArguments/5/4b9722ad.dat +0 -0
  66. data/lib/csharp/DolphinDeploy.IIS.IIS6/_ReSharper.DolphinDeploy.IIS.IIS6/PdbInfo/61d4d5326252d9cd7476a391dfbbb2a47481ffa6 +0 -0
  67. data/lib/csharp/DolphinDeploy.IIS.IIS6/_ReSharper.DolphinDeploy.IIS.IIS6/ProjectModel/ProjectModel.dat +0 -0
  68. data/lib/csharp/DolphinDeploy.IIS.IIS6/_ReSharper.DolphinDeploy.IIS.IIS6/SymbolCache.bin +0 -0
  69. data/lib/csharp/DolphinDeploy.IIS.IIS6/_ReSharper.DolphinDeploy.IIS.IIS6/TodoCache/1/78fc7364.dat +0 -0
  70. data/lib/csharp/DolphinDeploy.IIS.IIS6/_ReSharper.DolphinDeploy.IIS.IIS6/WordIndex/1/72ab4678.dat +0 -0
  71. data/lib/deploycommandcreator.rb +34 -0
  72. data/lib/deploymentconfig.rb +15 -0
  73. data/lib/directory_cleanup.rb +16 -0
  74. data/lib/dolphindeploy.rb +12 -0
  75. data/lib/dolphindeploy_rake.rb +36 -0
  76. data/lib/file_manager.rb +30 -0
  77. data/lib/unzip.rb +11 -0
  78. data/spec/IIS/IIS6_spec.rb +24 -0
  79. data/spec/IIS/IIS_spec.rb +18 -0
  80. data/spec/configured_as/mvc_deployment_spec.rb +108 -0
  81. data/spec/deploycommandcreator_spec.rb +169 -0
  82. data/spec/deploymentconfig_spec.rb +202 -0
  83. data/spec/dolphindeploy_spec.rb +13 -0
  84. data/spec/file_manager_spec.rb +22 -0
  85. data/spec/support/spec_helper.rb +17 -0
  86. metadata +222 -0
Binary file
Binary file
Binary file
@@ -0,0 +1,1048 @@
1
+ <?xml version="1.0"?>
2
+ <doc>
3
+ <assembly>
4
+ <name>xunit.runner.utility</name>
5
+ </assembly>
6
+ <members>
7
+ <member name="T:Xunit.Sdk.Guard">
8
+ <summary>
9
+ Guard class, used for guard clauses and argument validation
10
+ </summary>
11
+ </member>
12
+ <member name="M:Xunit.Sdk.Guard.ArgumentNotNull(System.String,System.Object)">
13
+ <summary/>
14
+ </member>
15
+ <member name="M:Xunit.Sdk.Guard.ArgumentNotNullOrEmpty(System.String,System.Collections.IEnumerable)">
16
+ <summary/>
17
+ </member>
18
+ <member name="M:Xunit.Sdk.Guard.ArgumentValid(System.String,System.String,System.Boolean)">
19
+ <summary/>
20
+ </member>
21
+ <member name="T:Xunit.ExecutorWrapper">
22
+ <summary>
23
+ Wraps calls to the Executor. Used by runners to perform version-resilient test
24
+ enumeration and execution.
25
+ </summary>
26
+ </member>
27
+ <member name="T:Xunit.IExecutorWrapper">
28
+ <summary>
29
+ Wraps calls to the Executor. Used by runners to perform version-resilient test
30
+ enumeration and execution.
31
+ </summary>
32
+ </member>
33
+ <member name="M:Xunit.IExecutorWrapper.EnumerateTests">
34
+ <summary>
35
+ Enumerates the tests in an assembly.
36
+ </summary>
37
+ <returns>The fully-formed assembly node of the XML</returns>
38
+ </member>
39
+ <member name="M:Xunit.IExecutorWrapper.GetAssemblyTestCount">
40
+ <summary>
41
+ Gets a count of the tests in the assembly.
42
+ </summary>
43
+ <returns>Returns the number of tests, if known; returns -1 if not known. May not represent
44
+ an exact count, but should be a best effort guess by the framework.</returns>
45
+ </member>
46
+ <member name="M:Xunit.IExecutorWrapper.RunAssembly(System.Predicate{System.Xml.XmlNode})">
47
+ <summary>
48
+ Runs all the tests in an assembly.
49
+ </summary>
50
+ <param name="callback">The callback which is called as each test/class/assembly is
51
+ finished, providing XML nodes that are part of the xUnit.net XML output format.
52
+ Test runs can be cancelled by returning false to the callback. If null, there are
53
+ no status callbacks (and cancellation isn't possible).</param>
54
+ <returns>Returns the fully-formed assembly node for the assembly that was just run.</returns>
55
+ </member>
56
+ <member name="M:Xunit.IExecutorWrapper.RunClass(System.String,System.Predicate{System.Xml.XmlNode})">
57
+ <summary>
58
+ Runs all the tests in the given class.
59
+ </summary>
60
+ <param name="type">The type.</param>
61
+ <param name="callback">The callback which is called as each test/class is
62
+ finished, providing XML nodes that are part of the xUnit.net XML output format.
63
+ Test runs can be cancelled by returning false to the callback. If null, there are
64
+ no status callbacks (and cancellation isn't possible).</param>
65
+ <returns>Returns the fully-formed class node for the class that was just run.</returns>
66
+ </member>
67
+ <member name="M:Xunit.IExecutorWrapper.RunTest(System.String,System.String,System.Predicate{System.Xml.XmlNode})">
68
+ <summary>
69
+ Runs a single test in a class.
70
+ </summary>
71
+ <param name="type">The type to run.</param>
72
+ <param name="method">The method to run.</param>
73
+ <param name="callback">The callback which is called as each test/class is
74
+ finished, providing XML nodes that are part of the xUnit.net XML output format.
75
+ Test runs can be cancelled by returning false to the callback. If null, there are
76
+ no status callbacks (and cancellation isn't possible).</param>
77
+ <returns>Returns the fully-formed class node for the class of the test that was just run.</returns>
78
+ </member>
79
+ <member name="M:Xunit.IExecutorWrapper.RunTests(System.String,System.Collections.Generic.List{System.String},System.Predicate{System.Xml.XmlNode})">
80
+ <summary>
81
+ Runs several tests in a single class.
82
+ </summary>
83
+ <param name="type">The type.</param>
84
+ <param name="methods">The methods to run.</param>
85
+ <param name="callback">The callback which is called as each test/class is
86
+ finished, providing XML nodes that are part of the xUnit.net XML output format.
87
+ Test runs can be cancelled by returning false to the callback. If null, there are
88
+ no status callbacks (and cancellation isn't possible).</param>
89
+ <returns>Returns the fully-formed class node for the class of the tests that were just run.</returns>
90
+ </member>
91
+ <member name="P:Xunit.IExecutorWrapper.AssemblyFilename">
92
+ <summary>
93
+ Gets the full pathname to the assembly under test.
94
+ </summary>
95
+ </member>
96
+ <member name="P:Xunit.IExecutorWrapper.ConfigFilename">
97
+ <summary>
98
+ Gets the full pathname to the configuration file.
99
+ </summary>
100
+ </member>
101
+ <member name="P:Xunit.IExecutorWrapper.XunitVersion">
102
+ <summary>
103
+ Gets the version of xunit.dll used by the test assembly.
104
+ </summary>
105
+ </member>
106
+ <member name="M:Xunit.ExecutorWrapper.#ctor(System.String,System.String,System.Boolean)">
107
+ <summary>
108
+ Initializes a new instance of the <see cref="T:Xunit.ExecutorWrapper"/> class.
109
+ </summary>
110
+ <param name="assemblyFilename">The assembly filename.</param>
111
+ <param name="configFilename">The config filename. If null, the default config filename will be used.</param>
112
+ <param name="shadowCopy">Set to true to enable shadow copying; false, otherwise.</param>
113
+ </member>
114
+ <member name="M:Xunit.ExecutorWrapper.Dispose">
115
+ <summary>
116
+ Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
117
+ </summary>
118
+ </member>
119
+ <member name="M:Xunit.ExecutorWrapper.EnumerateTests">
120
+ <inheritdoc/>
121
+ </member>
122
+ <member name="M:Xunit.ExecutorWrapper.GetAssemblyTestCount">
123
+ <inheritdoc/>
124
+ </member>
125
+ <member name="M:Xunit.ExecutorWrapper.RunAssembly(System.Predicate{System.Xml.XmlNode})">
126
+ <inheritdoc/>
127
+ </member>
128
+ <member name="M:Xunit.ExecutorWrapper.RunClass(System.String,System.Predicate{System.Xml.XmlNode})">
129
+ <inheritdoc/>
130
+ </member>
131
+ <member name="M:Xunit.ExecutorWrapper.RunTest(System.String,System.String,System.Predicate{System.Xml.XmlNode})">
132
+ <inheritdoc/>
133
+ </member>
134
+ <member name="M:Xunit.ExecutorWrapper.RunTests(System.String,System.Collections.Generic.List{System.String},System.Predicate{System.Xml.XmlNode})">
135
+ <inheritdoc/>
136
+ </member>
137
+ <member name="P:Xunit.ExecutorWrapper.AssemblyFilename">
138
+ <inheritdoc/>
139
+ </member>
140
+ <member name="P:Xunit.ExecutorWrapper.ConfigFilename">
141
+ <inheritdoc/>
142
+ </member>
143
+ <member name="P:Xunit.ExecutorWrapper.XunitVersion">
144
+ <inheritdoc/>
145
+ </member>
146
+ <member name="M:Xunit.ExecutorWrapper.CallbackHandler`1.InitializeLifetimeService">
147
+ <summary/>
148
+ </member>
149
+ <member name="M:Xunit.ExecutorWrapper.XmlNodeCallbackWrapper.InitializeLifetimeService">
150
+ <summary/>
151
+ </member>
152
+ <member name="T:Xunit.ITestMethodRunnerCallback">
153
+ <summary>
154
+ The callback object which receives real-time status notifications from the
155
+ test runner.
156
+ </summary>
157
+ </member>
158
+ <member name="M:Xunit.ITestMethodRunnerCallback.AssemblyFinished(Xunit.TestAssembly,System.Int32,System.Int32,System.Int32,System.Double)">
159
+ <summary>
160
+ Called when the assembly has finished running.
161
+ </summary>
162
+ <param name="testAssembly">The test assembly.</param>
163
+ <param name="total">The total number of tests run.</param>
164
+ <param name="failed">The number of failed tests.</param>
165
+ <param name="skipped">The number of skipped tests.</param>
166
+ <param name="time">The time taken to run, in seconds.</param>
167
+ </member>
168
+ <member name="M:Xunit.ITestMethodRunnerCallback.AssemblyStart(Xunit.TestAssembly)">
169
+ <summary>
170
+ Called when the assembly has started running.
171
+ </summary>
172
+ <param name="testAssembly">The test assembly.</param>
173
+ </member>
174
+ <member name="M:Xunit.ITestMethodRunnerCallback.ClassFailed(Xunit.TestClass,System.String,System.String,System.String)">
175
+ <summary>
176
+ Called when a class failure is encountered (i.e., when a fixture from
177
+ IUseFixture throws an exception during construction or <see cref="M:System.IDisposable.Dispose"/>.
178
+ </summary>
179
+ <param name="testClass">The test class.</param>
180
+ <param name="exceptionType">The full type name of the exception.</param>
181
+ <param name="message">The exception message.</param>
182
+ <param name="stackTrace">The exception stack trace.</param>
183
+ <returns></returns>
184
+ </member>
185
+ <member name="M:Xunit.ITestMethodRunnerCallback.ExceptionThrown(Xunit.TestAssembly,System.Exception)">
186
+ <summary>
187
+ Called when an exception is thrown (i.e., a catastrophic failure of the testing system).
188
+ </summary>
189
+ <param name="testAssembly">The test assembly.</param>
190
+ <param name="exception">The exception that was thrown.</param>
191
+ </member>
192
+ <member name="M:Xunit.ITestMethodRunnerCallback.TestFinished(Xunit.TestMethod)">
193
+ <summary>
194
+ Called when a test has finished running, regardless of what the result was.
195
+ </summary>
196
+ <param name="testMethod">The test method.</param>
197
+ <returns>Return true to continue running tests; return false to stop the test run.</returns>
198
+ </member>
199
+ <member name="M:Xunit.ITestMethodRunnerCallback.TestStart(Xunit.TestMethod)">
200
+ <summary>
201
+ Called when a test has started running.
202
+ </summary>
203
+ <param name="testMethod">The test method.</param>
204
+ <returns>Return true to continue running tests; return false to stop the test run.</returns>
205
+ </member>
206
+ <member name="T:Xunit.ITestMethodRunner">
207
+ <summary>
208
+ Represents the ability to run one or more test methods.
209
+ </summary>
210
+ </member>
211
+ <member name="M:Xunit.ITestMethodRunner.Run(System.Collections.Generic.IEnumerable{Xunit.TestMethod},Xunit.ITestMethodRunnerCallback)">
212
+ <summary>
213
+ Runs the specified test methods.
214
+ </summary>
215
+ <param name="testMethods">The test methods to run.</param>
216
+ <param name="callback">The run status information callback.</param>
217
+ </member>
218
+ <member name="T:Xunit.MultiAssemblyTestEnvironment">
219
+ <summary>
220
+ Represents the ability to load and unload test assemblies, as well as enumerate
221
+ the test assemblies, the test methods, and run tests.
222
+ </summary>
223
+ </member>
224
+ <member name="T:Xunit.ITestMethodEnumerator">
225
+ <summary>
226
+ Represents the ability to enumerate and filter test methods.
227
+ </summary>
228
+ </member>
229
+ <member name="M:Xunit.ITestMethodEnumerator.EnumerateTestMethods">
230
+ <summary>
231
+ Enumerates all test methods.
232
+ </summary>
233
+ </member>
234
+ <member name="M:Xunit.ITestMethodEnumerator.EnumerateTestMethods(System.Predicate{Xunit.TestMethod})">
235
+ <summary>
236
+ Enumerates test methods which pass the given filter.
237
+ </summary>
238
+ <param name="filter">The test method filter.</param>
239
+ </member>
240
+ <member name="F:Xunit.MultiAssemblyTestEnvironment.testAssemblies">
241
+ <summary>
242
+ The test assemblies loaded into the environment.
243
+ </summary>
244
+ </member>
245
+ <member name="M:Xunit.MultiAssemblyTestEnvironment.EnumerateTestAssemblies">
246
+ <summary>
247
+ Enumerates the test assemblies in the environment.
248
+ </summary>
249
+ </member>
250
+ <member name="M:Xunit.MultiAssemblyTestEnvironment.EnumerateTestMethods">
251
+ <inheritdoc/>
252
+ </member>
253
+ <member name="M:Xunit.MultiAssemblyTestEnvironment.EnumerateTestMethods(System.Predicate{Xunit.TestMethod})">
254
+ <inheritdoc/>
255
+ </member>
256
+ <member name="M:Xunit.MultiAssemblyTestEnvironment.EnumerateTraits">
257
+ <summary>
258
+ Enumerates the traits across all the loaded assemblies.
259
+ </summary>
260
+ </member>
261
+ <member name="M:Xunit.MultiAssemblyTestEnvironment.Load(System.String)">
262
+ <summary>
263
+ Loads the specified assembly, using the default configuration file.
264
+ </summary>
265
+ <param name="assemblyFilename">The assembly filename.</param>
266
+ <returns>The <see cref="T:Xunit.TestAssembly"/> which represents the newly
267
+ loaded test assembly.</returns>
268
+ </member>
269
+ <member name="M:Xunit.MultiAssemblyTestEnvironment.Load(System.String,System.String)">
270
+ <summary>
271
+ Loads the specified assembly using the specified configuration file.
272
+ </summary>
273
+ <param name="assemblyFilename">The assembly filename.</param>
274
+ <param name="configFilename">The config filename.</param>
275
+ <returns>The <see cref="T:Xunit.TestAssembly"/> which represents the newly
276
+ loaded test assembly.</returns>
277
+ </member>
278
+ <member name="M:Xunit.MultiAssemblyTestEnvironment.Load(System.String,System.String,System.Boolean)">
279
+ <summary>
280
+ Loads the specified assembly using the specified configuration file.
281
+ </summary>
282
+ <param name="assemblyFilename">The assembly filename.</param>
283
+ <param name="configFilename">The config filename.</param>
284
+ <param name="shadowCopy">Whether the DLLs should be shadow copied.</param>
285
+ <returns>The <see cref="T:Xunit.TestAssembly"/> which represents the newly
286
+ loaded test assembly.</returns>
287
+ </member>
288
+ <member name="M:Xunit.MultiAssemblyTestEnvironment.Load(Xunit.IExecutorWrapper)">
289
+ <summary>
290
+ Adds the assembly loaded into the given <see cref="T:Xunit.IExecutorWrapper"/>
291
+ into the environment.
292
+ </summary>
293
+ <param name="executorWrapper">The executor wrapper.</param>
294
+ <returns>The <see cref="T:Xunit.TestAssembly"/> which represents the newly
295
+ loaded test assembly.</returns>
296
+ </member>
297
+ <member name="M:Xunit.MultiAssemblyTestEnvironment.Run(System.Collections.Generic.IEnumerable{Xunit.TestMethod},Xunit.ITestMethodRunnerCallback)">
298
+ <inheritdoc/>
299
+ </member>
300
+ <member name="M:Xunit.MultiAssemblyTestEnvironment.Unload(Xunit.TestAssembly)">
301
+ <summary>
302
+ Unloads the specified assembly.
303
+ </summary>
304
+ <param name="assembly">The assembly to unload.</param>
305
+ </member>
306
+ <member name="T:Xunit.TestFailedResult">
307
+ <summary>
308
+ Represents a failed test run in the object model.
309
+ </summary>
310
+ </member>
311
+ <member name="T:Xunit.TestResult">
312
+ <summary>
313
+ Base class for all test results in the object model.
314
+ </summary>
315
+ </member>
316
+ <member name="M:Xunit.TestResult.#ctor(System.Double,System.String)">
317
+ <summary>
318
+ Initializes a new instance of the <see cref="T:Xunit.TestResult"/> class.
319
+ </summary>
320
+ <param name="duration">The duration the test took to run. For skipped tests, should be 0.0.</param>
321
+ <param name="displayName">The display name of the test result.</param>
322
+ </member>
323
+ <member name="P:Xunit.TestResult.DisplayName">
324
+ <summary>
325
+ Gets the display name of the test result.
326
+ </summary>
327
+ </member>
328
+ <member name="P:Xunit.TestResult.Duration">
329
+ <summary>
330
+ Gets the duration the test took to run.
331
+ </summary>
332
+ </member>
333
+ <member name="M:Xunit.TestFailedResult.#ctor(System.Double,System.String,System.String,System.String,System.String,System.String)">
334
+ <summary>
335
+ Initializes a new instance of the <see cref="T:Xunit.TestFailedResult"/> class.
336
+ </summary>
337
+ <param name="duration">The duration the test took to run.</param>
338
+ <param name="displayName">The display name of the test result.</param>
339
+ <param name="output">The output that was captured during the test run.</param>
340
+ <param name="exceptionType">Type of the exception.</param>
341
+ <param name="exceptionMessage">The exception message.</param>
342
+ <param name="exceptionStackTrace">The exception stack trace.</param>
343
+ </member>
344
+ <member name="P:Xunit.TestFailedResult.Output">
345
+ <summary>
346
+ Gets the output that was captured during the test run.
347
+ </summary>
348
+ </member>
349
+ <member name="P:Xunit.TestFailedResult.ExceptionType">
350
+ <summary>
351
+ Gets the type of the exception.
352
+ </summary>
353
+ </member>
354
+ <member name="P:Xunit.TestFailedResult.ExceptionMessage">
355
+ <summary>
356
+ Gets the exception message.
357
+ </summary>
358
+ </member>
359
+ <member name="P:Xunit.TestFailedResult.ExceptionStackTrace">
360
+ <summary>
361
+ Gets the exception stack trace.
362
+ </summary>
363
+ </member>
364
+ <member name="T:Xunit.TestSkippedResult">
365
+ <summary>
366
+ Represents a skipped test run in the object model.
367
+ </summary>
368
+ </member>
369
+ <member name="M:Xunit.TestSkippedResult.#ctor(System.String,System.String)">
370
+ <summary>
371
+ Initializes a new instance of the <see cref="T:Xunit.TestSkippedResult"/> class.
372
+ </summary>
373
+ <param name="displayName">The display name of the test result.</param>
374
+ <param name="reason">The skip reason.</param>
375
+ </member>
376
+ <member name="P:Xunit.TestSkippedResult.Reason">
377
+ <summary>
378
+ Gets the skip reason.
379
+ </summary>
380
+ </member>
381
+ <member name="T:Xunit.TestClassCallbackDispatcher">
382
+ <summary>
383
+ Acts as an <see cref="T:Xunit.IRunnerLogger"/> and adapts the callback messages
384
+ into calls to an instance of <see cref="T:Xunit.ITestMethodRunnerCallback"/>.
385
+ </summary>
386
+ </member>
387
+ <member name="T:Xunit.IRunnerLogger">
388
+ <summary>
389
+ Represents a logger used by <see cref="T:Xunit.TestRunner"/> and <see cref="T:Xunit.XmlLoggerAdapter"/>.
390
+ </summary>
391
+ </member>
392
+ <member name="M:Xunit.IRunnerLogger.AssemblyFinished(System.String,System.Int32,System.Int32,System.Int32,System.Double)">
393
+ <summary>
394
+ Called when the assembly has finished running.
395
+ </summary>
396
+ <param name="assemblyFilename">The assembly filename.</param>
397
+ <param name="total">The total number of tests run.</param>
398
+ <param name="failed">The number of failed tests.</param>
399
+ <param name="skipped">The number of skipped tests.</param>
400
+ <param name="time">The time taken to run, in seconds.</param>
401
+ </member>
402
+ <member name="M:Xunit.IRunnerLogger.AssemblyStart(System.String,System.String,System.String)">
403
+ <summary>
404
+ Called when the assembly has started running.
405
+ </summary>
406
+ <param name="assemblyFilename">The assembly filename.</param>
407
+ <param name="configFilename">The configuration filename, if given; null, otherwise.</param>
408
+ <param name="xUnitVersion">The version of xunit.dll.</param>
409
+ </member>
410
+ <member name="M:Xunit.IRunnerLogger.ClassFailed(System.String,System.String,System.String,System.String)">
411
+ <summary>
412
+ Called when a class failure is encountered (i.e., when a fixture from
413
+ IUseFixture throws an exception during construction or <see cref="M:System.IDisposable.Dispose"/>.
414
+ </summary>
415
+ <param name="className">The full type name of the class.</param>
416
+ <param name="exceptionType">The full type name of the exception.</param>
417
+ <param name="message">The exception message.</param>
418
+ <param name="stackTrace">The exception stack trace.</param>
419
+ <returns></returns>
420
+ </member>
421
+ <member name="M:Xunit.IRunnerLogger.ExceptionThrown(System.String,System.Exception)">
422
+ <summary>
423
+ Called when an exception is thrown (i.e., a catastrophic failure of the testing system).
424
+ </summary>
425
+ <param name="assemblyFilename">The assembly filename.</param>
426
+ <param name="exception">The exception that was thrown.</param>
427
+ </member>
428
+ <member name="M:Xunit.IRunnerLogger.TestFailed(System.String,System.String,System.String,System.Double,System.String,System.String,System.String,System.String)">
429
+ <summary>
430
+ Called when a test fails.
431
+ </summary>
432
+ <param name="name">The description name of the test.</param>
433
+ <param name="type">The full type name of the test class.</param>
434
+ <param name="method">The name of the method.</param>
435
+ <param name="duration">The time spent running the test, in seconds.</param>
436
+ <param name="output">The output of the test during its run.</param>
437
+ <param name="exceptionType">The full type name of the exception.</param>
438
+ <param name="message">The exception message.</param>
439
+ <param name="stackTrace">The exception stack trace.</param>
440
+ </member>
441
+ <member name="M:Xunit.IRunnerLogger.TestFinished(System.String,System.String,System.String)">
442
+ <summary>
443
+ Called when a test has finished running, regardless of what the result was.
444
+ </summary>
445
+ <param name="name">The description name of the test.</param>
446
+ <param name="type">The full type name of the test class.</param>
447
+ <param name="method">The name of the method.</param>
448
+ <returns>Return true to continue running tests; return false to stop the test run.</returns>
449
+ </member>
450
+ <member name="M:Xunit.IRunnerLogger.TestPassed(System.String,System.String,System.String,System.Double,System.String)">
451
+ <summary>
452
+ Called when a test has passed.
453
+ </summary>
454
+ <param name="name">The description name of the test.</param>
455
+ <param name="type">The full type name of the test class.</param>
456
+ <param name="method">The name of the method.</param>
457
+ <param name="duration">The time spent running the test, in seconds.</param>
458
+ <param name="output">The output of the test during its run.</param>
459
+ </member>
460
+ <member name="M:Xunit.IRunnerLogger.TestSkipped(System.String,System.String,System.String,System.String)">
461
+ <summary>
462
+ Called when a test was finished.
463
+ </summary>
464
+ <param name="name">The description name of the test.</param>
465
+ <param name="type">The full type name of the test class.</param>
466
+ <param name="method">The name of the method.</param>
467
+ <param name="reason">The skip reason.</param>
468
+ </member>
469
+ <member name="M:Xunit.IRunnerLogger.TestStart(System.String,System.String,System.String)">
470
+ <summary>
471
+ Called when a test has started running.
472
+ </summary>
473
+ <param name="name">The description name of the test.</param>
474
+ <param name="type">The full type name of the test class.</param>
475
+ <param name="method">The name of the method.</param>
476
+ <returns>Return true to continue running tests; return false to stop the test run.</returns>
477
+ </member>
478
+ <member name="M:Xunit.TestClassCallbackDispatcher.#ctor(Xunit.TestClass,Xunit.ITestMethodRunnerCallback)">
479
+ <summary>
480
+ Initializes a new instance of the <see cref="T:Xunit.TestClassCallbackDispatcher"/> class.
481
+ </summary>
482
+ <param name="testClass">The test class.</param>
483
+ <param name="callback">The run status information callback.</param>
484
+ </member>
485
+ <member name="M:Xunit.TestClassCallbackDispatcher.AssemblyFinished(System.String,System.Int32,System.Int32,System.Int32,System.Double)">
486
+ <inheritdoc/>
487
+ </member>
488
+ <member name="M:Xunit.TestClassCallbackDispatcher.AssemblyStart(System.String,System.String,System.String)">
489
+ <inheritdoc/>
490
+ </member>
491
+ <member name="M:Xunit.TestClassCallbackDispatcher.ClassFailed(System.String,System.String,System.String,System.String)">
492
+ <inheritdoc/>
493
+ </member>
494
+ <member name="M:Xunit.TestClassCallbackDispatcher.ExceptionThrown(System.String,System.Exception)">
495
+ <inheritdoc/>
496
+ </member>
497
+ <member name="M:Xunit.TestClassCallbackDispatcher.TestFailed(System.String,System.String,System.String,System.Double,System.String,System.String,System.String,System.String)">
498
+ <inheritdoc/>
499
+ </member>
500
+ <member name="M:Xunit.TestClassCallbackDispatcher.TestFinished(System.String,System.String,System.String)">
501
+ <inheritdoc/>
502
+ </member>
503
+ <member name="M:Xunit.TestClassCallbackDispatcher.TestPassed(System.String,System.String,System.String,System.Double,System.String)">
504
+ <inheritdoc/>
505
+ </member>
506
+ <member name="M:Xunit.TestClassCallbackDispatcher.TestSkipped(System.String,System.String,System.String,System.String)">
507
+ <inheritdoc/>
508
+ </member>
509
+ <member name="M:Xunit.TestClassCallbackDispatcher.TestStart(System.String,System.String,System.String)">
510
+ <inheritdoc/>
511
+ </member>
512
+ <member name="T:Xunit.TestPassedResult">
513
+ <summary>
514
+ Represents a passed test run in the object model.
515
+ </summary>
516
+ </member>
517
+ <member name="M:Xunit.TestPassedResult.#ctor(System.Double,System.String,System.String)">
518
+ <summary>
519
+ Initializes a new instance of the <see cref="T:Xunit.TestPassedResult"/> class.
520
+ </summary>
521
+ <param name="duration">The duration the test took to run.</param>
522
+ <param name="displayName">The display name of the test result.</param>
523
+ <param name="output">The output that was captured during the test run.</param>
524
+ </member>
525
+ <member name="P:Xunit.TestPassedResult.Output">
526
+ <summary>
527
+ Gets the output that was captured during the test run.
528
+ </summary>
529
+ </member>
530
+ <member name="T:Xunit.TestStatus">
531
+ <summary>
532
+ Indicates the composite test method status
533
+ </summary>
534
+ </member>
535
+ <member name="F:Xunit.TestStatus.NotRun">
536
+ <summary>
537
+ The method has not been run
538
+ </summary>
539
+ </member>
540
+ <member name="F:Xunit.TestStatus.Passed">
541
+ <summary>
542
+ All test results for the last run passed
543
+ </summary>
544
+ </member>
545
+ <member name="F:Xunit.TestStatus.Failed">
546
+ <summary>
547
+ At least one test result for the last run failed
548
+ </summary>
549
+ </member>
550
+ <member name="F:Xunit.TestStatus.Skipped">
551
+ <summary>
552
+ At least one test result for the last run was skipped, and none failed
553
+ </summary>
554
+ </member>
555
+ <member name="T:Xunit.XunitProject">
556
+ <summary>
557
+ Represents an xUnit Test Project file (.xunit file)
558
+ </summary>
559
+ </member>
560
+ <member name="M:Xunit.XunitProject.#ctor">
561
+ <summary>
562
+ Initializes a new instance of the <see cref="T:Xunit.XunitProject"/> class.
563
+ </summary>
564
+ </member>
565
+ <member name="M:Xunit.XunitProject.Load(System.String)">
566
+ <summary>
567
+ Loads an xUnit.net Test Project file from disk.
568
+ </summary>
569
+ <param name="filename">The test project filename</param>
570
+ </member>
571
+ <member name="M:Xunit.XunitProject.Save(System.String)">
572
+ <summary>
573
+ Saves the xUnit.net Test Project file to disk.
574
+ </summary>
575
+ <param name="filename">The test project filename</param>
576
+ </member>
577
+ <member name="P:Xunit.XunitProject.Assemblies">
578
+ <summary>
579
+ Gets or sets the assemblies in the project.
580
+ </summary>
581
+ </member>
582
+ <member name="T:Xunit.XunitProjectAssembly">
583
+ <summary>
584
+ Represents an assembly in an <see cref="T:Xunit.XunitProject"/>.
585
+ </summary>
586
+ </member>
587
+ <member name="M:Xunit.XunitProjectAssembly.#ctor">
588
+ <summary>
589
+ Initializes a new instance of the <see cref="T:Xunit.XunitProjectAssembly"/> class.
590
+ </summary>
591
+ </member>
592
+ <member name="P:Xunit.XunitProjectAssembly.AssemblyFilename">
593
+ <summary>
594
+ Gets or sets the assembly filename.
595
+ </summary>
596
+ </member>
597
+ <member name="P:Xunit.XunitProjectAssembly.ConfigFilename">
598
+ <summary>
599
+ Gets or sets the config filename.
600
+ </summary>
601
+ </member>
602
+ <member name="P:Xunit.XunitProjectAssembly.ShadowCopy">
603
+ <summary>
604
+ Gets or sets a value indicating whether to shadow copy the assembly
605
+ when running the tests.
606
+ </summary>
607
+ <remarks>
608
+ The xUnit.net GUI runner does not support this field.
609
+ </remarks>
610
+ </member>
611
+ <member name="P:Xunit.XunitProjectAssembly.Output">
612
+ <summary>
613
+ Gets or sets the output filenames. The dictionary key is the type
614
+ of the file to be output; the dictionary value is the filename to
615
+ write the output to.
616
+ </summary>
617
+ <remarks>
618
+ The xUnit.net GUI runner does not support this field. The MSBuild
619
+ runner only supports output of type 'xml', 'html', and 'nunit'.
620
+ </remarks>
621
+ </member>
622
+ <member name="T:Xunit.ITestRunner">
623
+ <summary>
624
+ Interface which represents a high level test runner.
625
+ </summary>
626
+ </member>
627
+ <member name="M:Xunit.ITestRunner.RunAssembly">
628
+ <summary>
629
+ Executes the tests in the assembly.
630
+ </summary>
631
+ <returns>Returns true if there were no failures; return false otherwise.</returns>
632
+ </member>
633
+ <member name="M:Xunit.ITestRunner.RunAssembly(System.Collections.Generic.IEnumerable{Xunit.IResultXmlTransform})">
634
+ <summary>
635
+ Executes the tests in the assembly, and then executes the transforms with the
636
+ resulting assembly XML.
637
+ </summary>
638
+ <param name="transforms">The transforms to execute.</param>
639
+ <returns>Returns true if there were no failures; return false otherwise.</returns>
640
+ </member>
641
+ <member name="M:Xunit.ITestRunner.RunClass(System.String)">
642
+ <summary>
643
+ Runs the class.
644
+ </summary>
645
+ <param name="type">The type.</param>
646
+ <returns></returns>
647
+ </member>
648
+ <member name="M:Xunit.ITestRunner.RunTest(System.String,System.String)">
649
+ <summary>
650
+ Runs a single test in a test class.
651
+ </summary>
652
+ <param name="type">The full name of the class.</param>
653
+ <param name="method">The name of the method.</param>
654
+ </member>
655
+ <member name="M:Xunit.ITestRunner.RunTests(System.String,System.Collections.Generic.List{System.String})">
656
+ <summary>
657
+ Runs the list of tests in a test class.
658
+ </summary>
659
+ <param name="type">The full name of the class.</param>
660
+ <param name="methods">The names of the methods to run.</param>
661
+ </member>
662
+ <member name="T:Xunit.TestAssembly">
663
+ <summary>
664
+ Represents a single test assembly with test classes.
665
+ </summary>
666
+ </member>
667
+ <member name="M:Xunit.TestAssembly.#ctor(Xunit.IExecutorWrapper,System.Collections.Generic.IEnumerable{Xunit.TestClass})">
668
+ <summary>
669
+ Initializes a new instance of the <see cref="T:Xunit.TestAssembly"/> class.
670
+ </summary>
671
+ <param name="executorWrapper">The executor wrapper.</param>
672
+ <param name="testClasses">The test classes.</param>
673
+ </member>
674
+ <member name="M:Xunit.TestAssembly.Dispose">
675
+ <inheritdoc/>
676
+ </member>
677
+ <member name="M:Xunit.TestAssembly.EnumerateClasses">
678
+ <summary>
679
+ Enumerates the test classes in the assembly.
680
+ </summary>
681
+ </member>
682
+ <member name="M:Xunit.TestAssembly.EnumerateTestMethods">
683
+ <inheritdoc/>
684
+ </member>
685
+ <member name="M:Xunit.TestAssembly.EnumerateTestMethods(System.Predicate{Xunit.TestMethod})">
686
+ <inheritdoc/>
687
+ </member>
688
+ <member name="M:Xunit.TestAssembly.Run(System.Collections.Generic.IEnumerable{Xunit.TestMethod},Xunit.ITestMethodRunnerCallback)">
689
+ <inheritdoc/>
690
+ </member>
691
+ <member name="P:Xunit.TestAssembly.AssemblyFilename">
692
+ <summary>
693
+ Gets the assembly filename.
694
+ </summary>
695
+ </member>
696
+ <member name="P:Xunit.TestAssembly.ConfigFilename">
697
+ <summary>
698
+ Gets the config filename.
699
+ </summary>
700
+ </member>
701
+ <member name="P:Xunit.TestAssembly.ExecutorWrapper">
702
+ <summary>
703
+ Gets the executor wrapper.
704
+ </summary>
705
+ </member>
706
+ <member name="P:Xunit.TestAssembly.XunitVersion">
707
+ <summary>
708
+ Gets the version of xunit.dll that the tests are linked against.
709
+ </summary>
710
+ </member>
711
+ <member name="T:Xunit.TestClass">
712
+ <summary>
713
+ Represents a single class with test methods.
714
+ </summary>
715
+ </member>
716
+ <member name="M:Xunit.TestClass.#ctor(System.String,System.Collections.Generic.IEnumerable{Xunit.TestMethod})">
717
+ <summary>
718
+ Initializes a new instance of the <see cref="T:Xunit.TestClass"/> class.
719
+ </summary>
720
+ <param name="typeName">The namespace-qualified type name that
721
+ this class represents.</param>
722
+ <param name="testMethods">The test methods inside this test class.</param>
723
+ </member>
724
+ <member name="M:Xunit.TestClass.EnumerateTestMethods">
725
+ <inheritdoc/>
726
+ </member>
727
+ <member name="M:Xunit.TestClass.EnumerateTestMethods(System.Predicate{Xunit.TestMethod})">
728
+ <inheritdoc/>
729
+ </member>
730
+ <member name="M:Xunit.TestClass.GetTestRunner(Xunit.ITestMethodRunnerCallback)">
731
+ <summary>
732
+ Gets the test runner used to run tests. Exists as an overload primarily
733
+ for the purposes of unit testing.
734
+ </summary>
735
+ <param name="callback">The run status information callback.</param>
736
+ </member>
737
+ <member name="M:Xunit.TestClass.Run(System.Collections.Generic.IEnumerable{Xunit.TestMethod},Xunit.ITestMethodRunnerCallback)">
738
+ <inheritdoc/>
739
+ </member>
740
+ <member name="P:Xunit.TestClass.TestAssembly">
741
+ <summary>
742
+ Gets the test assembly that this class belongs to.
743
+ </summary>
744
+ </member>
745
+ <member name="P:Xunit.TestClass.TypeName">
746
+ <summary>
747
+ Gets the namespace-qualified type name of this class.
748
+ </summary>
749
+ </member>
750
+ <member name="T:Xunit.TestMethod">
751
+ <summary>
752
+ Represents a single test method.
753
+ </summary>
754
+ </member>
755
+ <member name="M:Xunit.TestMethod.#ctor(System.String,System.String,Xunit.MultiValueDictionary{System.String,System.String})">
756
+ <summary>
757
+ Initializes a new instance of the <see cref="T:Xunit.TestMethod"/> class.
758
+ </summary>
759
+ <param name="methodName">The method name.</param>
760
+ <param name="displayName">The method's display name.</param>
761
+ <param name="traits">The method's traits.</param>
762
+ </member>
763
+ <member name="P:Xunit.TestMethod.DisplayName">
764
+ <summary>
765
+ Gets the method's display name.
766
+ </summary>
767
+ </member>
768
+ <member name="P:Xunit.TestMethod.MethodName">
769
+ <summary>
770
+ Gets the method's name.
771
+ </summary>
772
+ </member>
773
+ <member name="P:Xunit.TestMethod.RunResults">
774
+ <summary>
775
+ Gets the run results for the last run.
776
+ </summary>
777
+ </member>
778
+ <member name="P:Xunit.TestMethod.RunStatus">
779
+ <summary>
780
+ Gets the composite run status for all the results of the last run.
781
+ </summary>
782
+ </member>
783
+ <member name="P:Xunit.TestMethod.TestClass">
784
+ <summary>
785
+ Gets the test class this test method belongs to.
786
+ </summary>
787
+ </member>
788
+ <member name="P:Xunit.TestMethod.Traits">
789
+ <summary>
790
+ Gets the method's traits.
791
+ </summary>
792
+ </member>
793
+ <member name="T:Xunit.TestRunnerResult">
794
+ <summary>
795
+ The result of a test run via <see cref="T:Xunit.TestRunner"/>.
796
+ </summary>
797
+ </member>
798
+ <member name="F:Xunit.TestRunnerResult.Passed">
799
+ <summary>
800
+ All tests passed, with no class-level failures
801
+ </summary>
802
+ </member>
803
+ <member name="F:Xunit.TestRunnerResult.Failed">
804
+ <summary>
805
+ At least one test failed, or there was a class-level failure
806
+ </summary>
807
+ </member>
808
+ <member name="F:Xunit.TestRunnerResult.NoTests">
809
+ <summary>
810
+ There were no tests to run
811
+ </summary>
812
+ </member>
813
+ <member name="T:Xunit.IResultXmlTransform">
814
+ <summary>
815
+ Represents a transformation of the resulting assembly XML into some output format.
816
+ </summary>
817
+ </member>
818
+ <member name="M:Xunit.IResultXmlTransform.Transform(System.String)">
819
+ <summary>
820
+ Transforms the given assembly XML into the destination format.
821
+ </summary>
822
+ <param name="xml">The assembly XML.</param>
823
+ </member>
824
+ <member name="P:Xunit.IResultXmlTransform.Filename">
825
+ <summary>
826
+ Gets the output filename, if known; returns null if the output isn't done to file.
827
+ </summary>
828
+ </member>
829
+ <member name="P:Xunit.IResultXmlTransform.OutputType">
830
+ <summary>
831
+ Gets the type of the output.
832
+ </summary>
833
+ </member>
834
+ <member name="T:Xunit.TestRunner">
835
+ <summary>
836
+ Runs tests in an assembly, and transforms the XML results into calls to
837
+ the provided <see cref="T:Xunit.IRunnerLogger"/>.
838
+ </summary>
839
+ </member>
840
+ <member name="M:Xunit.TestRunner.#ctor(Xunit.IExecutorWrapper,Xunit.IRunnerLogger)">
841
+ <summary>
842
+ Initializes a new instance of the <see cref="T:Xunit.TestRunner"/> class.
843
+ </summary>
844
+ <param name="executorWrapper">The executor wrapper.</param>
845
+ <param name="logger">The logger.</param>
846
+ </member>
847
+ <member name="M:Xunit.TestRunner.RunAssembly">
848
+ <inheritdoc/>
849
+ </member>
850
+ <member name="M:Xunit.TestRunner.RunAssembly(System.Collections.Generic.IEnumerable{Xunit.IResultXmlTransform})">
851
+ <inheritdoc/>
852
+ </member>
853
+ <member name="M:Xunit.TestRunner.RunClass(System.String)">
854
+ <inheritdoc/>
855
+ </member>
856
+ <member name="M:Xunit.TestRunner.RunTest(System.String,System.String)">
857
+ <inheritdoc/>
858
+ </member>
859
+ <member name="M:Xunit.TestRunner.RunTests(System.String,System.Collections.Generic.List{System.String})">
860
+ <inheritdoc/>
861
+ </member>
862
+ <member name="T:Xunit.NullTransformer">
863
+ <summary>
864
+ An implementation of <see cref="T:Xunit.IResultXmlTransform"/> which writes the
865
+ XML to a file without any transformation applied.
866
+ </summary>
867
+ </member>
868
+ <member name="M:Xunit.NullTransformer.#ctor(System.String)">
869
+ <summary>
870
+ Initializes a new instance of the <see cref="T:Xunit.NullTransformer"/> class.
871
+ </summary>
872
+ <param name="filename">The output filename.</param>
873
+ </member>
874
+ <member name="M:Xunit.NullTransformer.Transform(System.String)">
875
+ <inheritdoc/>
876
+ </member>
877
+ <member name="P:Xunit.NullTransformer.Filename">
878
+ <inheritdoc/>
879
+ </member>
880
+ <member name="P:Xunit.NullTransformer.OutputType">
881
+ <inheritdoc/>
882
+ </member>
883
+ <member name="T:Xunit.XslStreamTransformer">
884
+ <summary>
885
+ An implementation of <see cref="T:Xunit.IResultXmlTransform"/> which writes the
886
+ XML to a file after applying the XSL stylesheet in the given stream.
887
+ </summary>
888
+ </member>
889
+ <member name="M:Xunit.XslStreamTransformer.#ctor(System.IO.Stream,System.String,System.String)">
890
+ <summary>
891
+ Initializes a new instance of the <see cref="T:Xunit.XslStreamTransformer"/> class.
892
+ </summary>
893
+ <param name="xslStream">The stream with the XSL stylesheet.</param>
894
+ <param name="filename">The output filename.</param>
895
+ <param name="outputType">The output type.</param>
896
+ </member>
897
+ <member name="M:Xunit.XslStreamTransformer.Transform(System.String)">
898
+ <inheritdoc/>
899
+ </member>
900
+ <member name="P:Xunit.XslStreamTransformer.Filename">
901
+ <inheritdoc/>
902
+ </member>
903
+ <member name="P:Xunit.XslStreamTransformer.OutputType">
904
+ <inheritdoc/>
905
+ </member>
906
+ <member name="T:Xunit.MultiValueDictionary`2">
907
+ <summary>
908
+ A dictionary which contains multiple unique values for each key.
909
+ </summary>
910
+ <typeparam name="TKey">The type of the key.</typeparam>
911
+ <typeparam name="TValue">The type of the value.</typeparam>
912
+ </member>
913
+ <member name="M:Xunit.MultiValueDictionary`2.AddValue(`0,`1)">
914
+ <summary>
915
+ Adds the value for the given key. If the key does not exist in the
916
+ dictionary yet, it will add it.
917
+ </summary>
918
+ <param name="key">The key.</param>
919
+ <param name="value">The value.</param>
920
+ </member>
921
+ <member name="M:Xunit.MultiValueDictionary`2.Clear">
922
+ <summary>
923
+ Removes all keys and values from the dictionary.
924
+ </summary>
925
+ </member>
926
+ <member name="M:Xunit.MultiValueDictionary`2.Contains(`0,`1)">
927
+ <summary>
928
+ Determines whether the dictionary contains to specified key and value.
929
+ </summary>
930
+ <param name="key">The key.</param>
931
+ <param name="value">The value.</param>
932
+ </member>
933
+ <member name="M:Xunit.MultiValueDictionary`2.ForEach(Xunit.MultiValueDictionary{`0,`1}.ForEachDelegate)">
934
+ <summary>
935
+ Calls the delegate once for each key/value pair in the dictionary.
936
+ </summary>
937
+ </member>
938
+ <member name="M:Xunit.MultiValueDictionary`2.Remove(`0)">
939
+ <summary>
940
+ Removes the given key and all of its values.
941
+ </summary>
942
+ </member>
943
+ <member name="M:Xunit.MultiValueDictionary`2.RemoveValue(`0,`1)">
944
+ <summary>
945
+ Removes the given value from the given key. If this was the
946
+ last value for the key, then the key is removed as well.
947
+ </summary>
948
+ <param name="key">The key.</param>
949
+ <param name="value">The value.</param>
950
+ </member>
951
+ <member name="P:Xunit.MultiValueDictionary`2.Item(`0)">
952
+ <summary>
953
+ Gets the values for the given key.
954
+ </summary>
955
+ </member>
956
+ <member name="P:Xunit.MultiValueDictionary`2.Count">
957
+ <summary>
958
+ Gets the count of the keys in the dictionary.
959
+ </summary>
960
+ </member>
961
+ <member name="P:Xunit.MultiValueDictionary`2.Keys">
962
+ <summary>
963
+ Gets the keys.
964
+ </summary>
965
+ </member>
966
+ <member name="T:Xunit.MultiValueDictionary`2.ForEachDelegate">
967
+ <summary/>
968
+ </member>
969
+ <member name="T:Xunit.StackFrameTransformer">
970
+ <summary>
971
+ Transforms stack frames and stack traces into compiler-like output
972
+ so they can be double-clicked in Visual Studio.
973
+ </summary>
974
+ </member>
975
+ <member name="M:Xunit.StackFrameTransformer.TransformFrame(System.String)">
976
+ <summary/>
977
+ </member>
978
+ <member name="M:Xunit.StackFrameTransformer.TransformStack(System.String)">
979
+ <summary/>
980
+ </member>
981
+ <member name="T:Xunit.TestAssemblyBuilder">
982
+ <summary>
983
+ Responsible for building <see cref="T:Xunit.TestAssembly"/> instances. Uses an instance
984
+ of <see cref="T:Xunit.IExecutorWrapper"/> to interrogate the list of available tests
985
+ and create the entire object model tree.
986
+ </summary>
987
+ </member>
988
+ <member name="M:Xunit.TestAssemblyBuilder.Build(Xunit.IExecutorWrapper)">
989
+ <summary>
990
+ Creates a <see cref="T:Xunit.TestAssembly"/> which is a complete object model over
991
+ the tests inside of instance of <see cref="T:Xunit.IExecutorWrapper"/>.
992
+ </summary>
993
+ <param name="executorWrapper">The executor wrapper</param>
994
+ <returns>The fully populated object model</returns>
995
+ </member>
996
+ <member name="T:Xunit.XmlLoggerAdapter">
997
+ <summary>
998
+ Parses the XML nodes from the version resilient runner facility and converts
999
+ them into calls against the provided <see cref="T:Xunit.IRunnerLogger"/>.
1000
+ </summary>
1001
+ </member>
1002
+ <member name="M:Xunit.XmlLoggerAdapter.LogNode(System.Xml.XmlNode,Xunit.IRunnerLogger)">
1003
+ <summary>
1004
+ Logs a result XML node. Maybe be any kind of XML node.
1005
+ </summary>
1006
+ <param name="node">The node to be logged.</param>
1007
+ <param name="logger">The logger.</param>
1008
+ <returns>Returns true if the user wishes to continue running tests; returns false otherwise.</returns>
1009
+ </member>
1010
+ <member name="M:Xunit.XmlLoggerAdapter.LogAssemblyNode(System.Xml.XmlNode,Xunit.IRunnerLogger)">
1011
+ <summary>
1012
+ Logs the assembly node by calling <see cref="M:Xunit.IRunnerLogger.AssemblyFinished(System.String,System.Int32,System.Int32,System.Int32,System.Double)"/>.
1013
+ </summary>
1014
+ <param name="assemblyNode">The assembly node.</param>
1015
+ <param name="logger">The logger.</param>
1016
+ </member>
1017
+ <member name="M:Xunit.XmlLoggerAdapter.LogClassNode(System.Xml.XmlNode,Xunit.IRunnerLogger)">
1018
+ <summary>
1019
+ Logs the class node by calling <see cref="M:Xunit.IRunnerLogger.ClassFailed(System.String,System.String,System.String,System.String)"/> (if the class failed).
1020
+ The exception type was added in xUnit.net 1.1, so when the test assembly is linked against
1021
+ xUnit.net versions prior to 1.1, the exception type will be null.
1022
+ </summary>
1023
+ <param name="classNode">The class node.</param>
1024
+ <param name="logger">The logger.</param>
1025
+ <returns>Returns true if the user wishes to continue running tests; returns false otherwise.</returns>
1026
+ </member>
1027
+ <member name="M:Xunit.XmlLoggerAdapter.LogStartNode(System.Xml.XmlNode,Xunit.IRunnerLogger)">
1028
+ <summary>
1029
+ Logs the start node by calling <see cref="M:Xunit.IRunnerLogger.TestStart(System.String,System.String,System.String)"/>. The start node was added
1030
+ in xUnit.net 1.1, so it will only be present when the test assembly is linked against xunit.dll
1031
+ version 1.1 or later.
1032
+ </summary>
1033
+ <param name="startNode">The start node.</param>
1034
+ <param name="logger">The logger.</param>
1035
+ <returns>Returns true if the user wishes to continue running tests; returns false otherwise.</returns>
1036
+ </member>
1037
+ <member name="M:Xunit.XmlLoggerAdapter.LogTestNode(System.Xml.XmlNode,Xunit.IRunnerLogger)">
1038
+ <summary>
1039
+ Logs the test node by calling <see cref="M:Xunit.IRunnerLogger.TestFinished(System.String,System.String,System.String)"/>. It will also call
1040
+ <see cref="M:Xunit.IRunnerLogger.TestPassed(System.String,System.String,System.String,System.Double,System.String)"/>, <see cref="M:Xunit.IRunnerLogger.TestFailed(System.String,System.String,System.String,System.Double,System.String,System.String,System.String,System.String)"/>, or
1041
+ <see cref="M:Xunit.IRunnerLogger.TestSkipped(System.String,System.String,System.String,System.String)"/> as appropriate.
1042
+ </summary>
1043
+ <param name="testNode">The test node.</param>
1044
+ <param name="logger">The logger.</param>
1045
+ <returns>Returns true if the user wishes to continue running tests; returns false otherwise.</returns>
1046
+ </member>
1047
+ </members>
1048
+ </doc>