albacore 0.6.2.rc1 → 1.0.0.rc.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (644) hide show
  1. checksums.yaml +7 -0
  2. data/.bundle/config +2 -0
  3. data/.gitignore +22 -3
  4. data/.rspec +2 -0
  5. data/.rvmrc +1 -0
  6. data/.travis.yml +15 -13
  7. data/CONTRIBUTING.md +87 -0
  8. data/Gemfile +6 -14
  9. data/Guardfile +3 -1
  10. data/LICENSE +21 -0
  11. data/README.md +47 -148
  12. data/Rakefile +24 -9
  13. data/albacore.gemspec +25 -32
  14. data/lib/albacore.rb +40 -3
  15. data/lib/albacore/albacoretask.rb +50 -0
  16. data/lib/albacore/aspnetcompiler.rb +58 -0
  17. data/lib/albacore/assemblyinfo.rb +182 -0
  18. data/lib/albacore/assemblyinfolanguages/assemblyinfoengine.rb +41 -0
  19. data/lib/albacore/assemblyinfolanguages/cppcliengine.rb +18 -0
  20. data/lib/albacore/assemblyinfolanguages/csharpengine.rb +15 -0
  21. data/lib/albacore/assemblyinfolanguages/fsharpengine.rb +23 -0
  22. data/lib/albacore/assemblyinfolanguages/vbnetengine.rb +15 -0
  23. data/lib/albacore/config/aspnetcompilerconfig.rb +29 -0
  24. data/lib/albacore/config/assemblyinfoconfig.rb +20 -0
  25. data/lib/albacore/config/config.rb +22 -0
  26. data/lib/albacore/config/cscconfig.rb +28 -0
  27. data/lib/albacore/config/docuconfig.rb +23 -0
  28. data/lib/albacore/config/execconfig.rb +15 -0
  29. data/lib/albacore/config/fluentmigratorrunnerconfig.rb +15 -0
  30. data/lib/albacore/config/ilmergeconfig.rb +24 -0
  31. data/lib/albacore/config/msbuildconfig.rb +29 -0
  32. data/lib/albacore/config/msdeployconfig.rb +15 -0
  33. data/lib/albacore/config/mspectestrunnerconfig.rb +15 -0
  34. data/lib/albacore/config/mstesttestrunnerconfig.rb +15 -0
  35. data/lib/albacore/config/nantconfig.rb +15 -0
  36. data/lib/albacore/config/nchurnconfig.rb +15 -0
  37. data/lib/albacore/config/ncoverconsoleconfig.rb +15 -0
  38. data/lib/albacore/config/ncoverreportconfig.rb +15 -0
  39. data/lib/albacore/config/ndependconfig.rb +15 -0
  40. data/lib/albacore/config/netversion.rb +24 -0
  41. data/lib/albacore/config/nugetpackconfig.rb +19 -0
  42. data/lib/albacore/config/nugetpublishconfig.rb +19 -0
  43. data/lib/albacore/config/nugetpushconfig.rb +19 -0
  44. data/lib/albacore/config/nugetupdateconfig.rb +19 -0
  45. data/lib/albacore/config/nunittestrunnerconfig.rb +14 -0
  46. data/lib/albacore/config/specflowreportconfig.rb +24 -0
  47. data/lib/albacore/config/sqlcmdconfig.rb +15 -0
  48. data/lib/albacore/config/unzipconfig.rb +15 -0
  49. data/lib/albacore/config/vssgetconfig.rb +14 -0
  50. data/lib/albacore/config/xbuildconfig.rb +15 -0
  51. data/lib/albacore/config/xunittestrunnerconfig.rb +15 -0
  52. data/lib/albacore/config/zipdirectoryconfig.rb +15 -0
  53. data/lib/albacore/csc.rb +67 -0
  54. data/lib/albacore/docu.rb +41 -0
  55. data/lib/albacore/exec.rb +18 -0
  56. data/lib/albacore/fluentmigratorrunner.rb +52 -0
  57. data/lib/albacore/ilmerge.rb +65 -0
  58. data/lib/albacore/msbuild.rb +78 -0
  59. data/lib/albacore/msdeploy.rb +122 -0
  60. data/lib/albacore/mspectestrunner.rb +50 -0
  61. data/lib/albacore/mstesttestrunner.rb +43 -0
  62. data/lib/albacore/nant.rb +38 -0
  63. data/lib/albacore/nchurn.rb +74 -0
  64. data/lib/albacore/ncoverconsole.rb +68 -0
  65. data/lib/albacore/ncoverreport.rb +62 -0
  66. data/lib/albacore/ncoverreports/assemblyfilter.rb +10 -0
  67. data/lib/albacore/ncoverreports/branchcoverage.rb +10 -0
  68. data/lib/albacore/ncoverreports/classfilter.rb +9 -0
  69. data/lib/albacore/ncoverreports/codecoveragebase.rb +25 -0
  70. data/lib/albacore/ncoverreports/cyclomaticcomplexity.rb +23 -0
  71. data/lib/albacore/ncoverreports/documentfilter.rb +9 -0
  72. data/lib/albacore/ncoverreports/fullcoveragereport.rb +13 -0
  73. data/lib/albacore/ncoverreports/methodcoverage.rb +10 -0
  74. data/lib/albacore/ncoverreports/methodfilter.rb +9 -0
  75. data/lib/albacore/ncoverreports/namespacefilter.rb +9 -0
  76. data/lib/albacore/ncoverreports/reportfilterbase.rb +26 -0
  77. data/lib/albacore/ncoverreports/summaryreport.rb +18 -0
  78. data/lib/albacore/ncoverreports/symbolcoverage.rb +9 -0
  79. data/lib/albacore/ndepend.rb +33 -0
  80. data/lib/albacore/nugetinstall.rb +57 -0
  81. data/lib/albacore/nugetpack.rb +54 -0
  82. data/lib/albacore/nugetpublish.rb +47 -0
  83. data/lib/albacore/nugetpush.rb +46 -0
  84. data/lib/albacore/nugetupdate.rb +51 -0
  85. data/lib/albacore/nunittestrunner.rb +41 -0
  86. data/lib/albacore/nuspec.rb +178 -0
  87. data/lib/albacore/output.rb +108 -0
  88. data/lib/albacore/plink.rb +47 -0
  89. data/lib/albacore/specflowreport.rb +62 -0
  90. data/lib/albacore/sqlcmd.rb +82 -0
  91. data/lib/albacore/support/attrmethods.rb +33 -0
  92. data/lib/albacore/support/createtask.rb +50 -0
  93. data/lib/albacore/support/failure.rb +15 -0
  94. data/lib/albacore/support/logging.rb +38 -0
  95. data/lib/albacore/support/openstruct.rb +13 -0
  96. data/lib/albacore/support/runcommand.rb +45 -0
  97. data/lib/albacore/support/supportlinux.rb +21 -0
  98. data/lib/albacore/support/updateattributes.rb +13 -0
  99. data/lib/albacore/support/yamlconfig.rb +18 -0
  100. data/lib/albacore/unzip.rb +34 -0
  101. data/lib/albacore/version.rb +3 -3
  102. data/lib/albacore/vssget.rb +44 -0
  103. data/lib/albacore/xbuild.rb +54 -0
  104. data/lib/albacore/xunittestrunner.rb +56 -0
  105. data/lib/albacore/zipdirectory.rb +108 -0
  106. data/samples/Rakefile +154 -0
  107. data/spec/README.md +9 -0
  108. data/spec/albacoremodel_spec.rb +53 -0
  109. data/spec/assemblyinfo_contexts.rb +52 -0
  110. data/spec/assemblyinfo_spec.rb +477 -0
  111. data/spec/attrmethods_spec.rb +136 -0
  112. data/spec/config_spec.rb +34 -0
  113. data/spec/createtask_spec.rb +237 -0
  114. data/spec/csc_spec.rb +253 -0
  115. data/spec/docu_spec.rb +109 -0
  116. data/spec/exec_spec.rb +45 -0
  117. data/spec/fluentmigratorrunner_spec.rb +263 -0
  118. data/spec/ilmerge_spec.rb +93 -0
  119. data/spec/msbuild_spec.rb +287 -0
  120. data/spec/msdeploy_spec.rb +124 -0
  121. data/spec/mspec_spec.rb +28 -0
  122. data/spec/mstesttestrunner_spec.rb +144 -0
  123. data/spec/nant_spec.rb +110 -0
  124. data/spec/nchurn_spec.rb +75 -0
  125. data/spec/ncoverconsole_spec.rb +353 -0
  126. data/spec/ncoverreport_spec.rb +619 -0
  127. data/spec/ndepend_spec.rb +72 -0
  128. data/spec/netversion_spec.rb +53 -0
  129. data/spec/nugetinstall_spec.rb +47 -0
  130. data/spec/nugetupdate_spec.rb +42 -0
  131. data/spec/nunittestrunner_spec.rb +115 -0
  132. data/spec/nuspec_spec.rb +127 -0
  133. data/spec/output_spec.rb +165 -0
  134. data/spec/patches/docu_patch.rb +13 -0
  135. data/spec/patches/fail_patch.rb +9 -0
  136. data/spec/patches/system_patch.rb +20 -0
  137. data/spec/plink_spec.rb +62 -0
  138. data/spec/runcommand_spec.rb +94 -0
  139. data/spec/spec.opts +1 -0
  140. data/spec/spec_helper.rb +15 -13
  141. data/spec/specflowreport_spec.rb +143 -0
  142. data/spec/sqlcmd_spec.rb +334 -0
  143. data/spec/support/AssemblyInfo/AssemblyInfo.test +6 -0
  144. data/spec/support/AssemblyInfo/AssemblyInfoInput.test +9 -0
  145. data/spec/support/AssemblyInfo/assemblyinfo.yml +2 -0
  146. data/spec/support/CodeCoverage/mspec/assemblies/Machine.Specifications.dll +0 -0
  147. data/spec/support/CodeCoverage/mspec/assemblies/TestSolution.MSpecTests.dll +0 -0
  148. data/spec/support/CodeCoverage/mspec/assemblies/TestSolution.dll +0 -0
  149. data/spec/support/CodeCoverage/mspec/assemblies/nunit.framework.dll +0 -0
  150. data/spec/support/CodeCoverage/mstest/TestSolution.MSTestTests.NET40.dll +0 -0
  151. data/spec/support/CodeCoverage/mstest/TestSolution.MSTestTests.dll +0 -0
  152. data/spec/support/CodeCoverage/nunit/assemblies/TestSolution.Tests.dll +0 -0
  153. data/spec/support/CodeCoverage/nunit/assemblies/TestSolution.dll +0 -0
  154. data/spec/support/CodeCoverage/nunit/assemblies/nunit.framework.dll +0 -0
  155. data/spec/support/CodeCoverage/nunit/assemblies/with spaces/TestSolution.Tests.dll +0 -0
  156. data/spec/support/CodeCoverage/nunit/assemblies/with spaces/TestSolution.dll +0 -0
  157. data/spec/support/CodeCoverage/nunit/assemblies/with spaces/nunit.framework.dll +0 -0
  158. data/spec/support/CodeCoverage/nunit/failing_assemblies/TestSolution.FailingTests.dll +0 -0
  159. data/spec/support/CodeCoverage/nunit/failing_assemblies/nunit.framework.dll +0 -0
  160. data/spec/support/CodeCoverage/report/coverage.xml +4578 -0
  161. data/spec/support/CodeCoverage/xunit/assemblies/TestSolution.XUnitTests.dll +0 -0
  162. data/spec/support/CodeCoverage/xunit/assemblies/TestSolution.dll +0 -0
  163. data/spec/support/CodeCoverage/xunit/assemblies/xunit.dll +0 -0
  164. data/spec/support/CodeCoverage/xunit/assemblies/xunit.xml +2604 -0
  165. data/spec/support/FluentMigrator/FluentMigrator.dll +0 -0
  166. data/spec/support/FluentMigrator/TestSolution.FluentMigrator.dll +0 -0
  167. data/spec/support/SpecFlow/TechTalk.SpecFlow.dll +0 -0
  168. data/spec/support/SpecFlow/TestSolution.SpecFlow.dll +0 -0
  169. data/spec/support/SpecFlow/TestSolution.SpecFlow.pdb +0 -0
  170. data/spec/support/SpecFlow/TestSolution.dll +0 -0
  171. data/spec/support/SpecFlow/TestSolution.pdb +0 -0
  172. data/spec/support/SpecFlow/nunit.framework.dll +0 -0
  173. data/spec/support/TestSolution/LocalTestRun.testrunconfig +5 -0
  174. data/spec/support/TestSolution/NDependProject.xml +315 -0
  175. data/spec/support/TestSolution/TestSolution.5.0.ReSharper.user +27 -0
  176. data/spec/support/TestSolution/TestSolution.FailingTests/FailingTestFixture.cs +19 -0
  177. data/spec/support/TestSolution/TestSolution.FailingTests/Properties/AssemblyInfo.cs +36 -0
  178. data/spec/support/TestSolution/TestSolution.FailingTests/TestSolution.FailingTests.csproj +101 -0
  179. data/spec/support/TestSolution/TestSolution.FluentMigrator/M001_SampleMigration.cs +19 -0
  180. data/spec/support/TestSolution/TestSolution.FluentMigrator/Properties/AssemblyInfo.cs +36 -0
  181. data/spec/support/TestSolution/TestSolution.FluentMigrator/TestSolution.FluentMigrator.csproj +101 -0
  182. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy.sln +20 -0
  183. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/About.aspx +13 -0
  184. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/About.aspx.cs +17 -0
  185. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/About.aspx.designer.cs +17 -0
  186. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/ChangePassword.aspx +60 -0
  187. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/ChangePassword.aspx.cs +17 -0
  188. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/ChangePassword.aspx.designer.cs +26 -0
  189. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/ChangePasswordSuccess.aspx +13 -0
  190. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/ChangePasswordSuccess.aspx.cs +17 -0
  191. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/ChangePasswordSuccess.aspx.designer.cs +17 -0
  192. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/Login.aspx +49 -0
  193. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/Login.aspx.cs +17 -0
  194. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/Login.aspx.designer.cs +35 -0
  195. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/Register.aspx +75 -0
  196. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/Register.aspx.cs +32 -0
  197. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/Register.aspx.designer.cs +35 -0
  198. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/Web.config +18 -0
  199. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Default.aspx +17 -0
  200. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Default.aspx.cs +17 -0
  201. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Default.aspx.designer.cs +17 -0
  202. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Global.asax +1 -0
  203. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Global.asax.cs +47 -0
  204. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Properties/AssemblyInfo.cs +35 -0
  205. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Scripts/jquery-1.4.1-vsdoc.js +8061 -0
  206. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Scripts/jquery-1.4.1.js +6111 -0
  207. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Scripts/jquery-1.4.1.min.js +167 -0
  208. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Site.Master +51 -0
  209. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Site.Master.cs +17 -0
  210. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Site.Master.designer.cs +71 -0
  211. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Styles/Site.css +294 -0
  212. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/TestSolution.MSDeploy.Publish.xml +2 -0
  213. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/TestSolution.MSDeploy.csproj +163 -0
  214. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Web.Debug.config +30 -0
  215. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Web.Release.config +31 -0
  216. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Web.config +52 -0
  217. data/spec/support/TestSolution/TestSolution.MSTestTests.NET40/Properties/AssemblyInfo.cs +36 -0
  218. data/spec/support/TestSolution/TestSolution.MSTestTests.NET40/TestSolution.MSTestTests.NET40.csproj +53 -0
  219. data/spec/support/TestSolution/TestSolution.MSTestTests.NET40/Tests.cs +20 -0
  220. data/spec/support/TestSolution/TestSolution.MSTestTests/Properties/AssemblyInfo.cs +35 -0
  221. data/spec/support/TestSolution/TestSolution.MSTestTests/TestSolution.MSTestTests.csproj +97 -0
  222. data/spec/support/TestSolution/TestSolution.MSTestTests/Tests.cs +20 -0
  223. data/spec/support/TestSolution/TestSolution.MSpecTests/Properties/AssemblyInfo.cs +36 -0
  224. data/spec/support/TestSolution/TestSolution.MSpecTests/SomeSpecTest.cs +18 -0
  225. data/spec/support/TestSolution/TestSolution.MSpecTests/TestSolution.MSpecTests.csproj +110 -0
  226. data/spec/support/TestSolution/TestSolution.SpecFlow/OneFeature.feature +8 -0
  227. data/spec/support/TestSolution/TestSolution.SpecFlow/OneFeature.feature.cs +73 -0
  228. data/spec/support/TestSolution/TestSolution.SpecFlow/Properties/AssemblyInfo.cs +36 -0
  229. data/spec/support/TestSolution/TestSolution.SpecFlow/StepDefinition.cs +30 -0
  230. data/spec/support/TestSolution/TestSolution.SpecFlow/TestSolution.SpecFlow.csproj +122 -0
  231. data/spec/support/TestSolution/TestSolution.Tests/Properties/AssemblyInfo.cs +36 -0
  232. data/spec/support/TestSolution/TestSolution.Tests/SomeTestFixture.cs +23 -0
  233. data/spec/support/TestSolution/TestSolution.Tests/TestSolution.Tests.csproj +107 -0
  234. data/spec/support/TestSolution/TestSolution.XUnitTests/Class1.cs +20 -0
  235. data/spec/support/TestSolution/TestSolution.XUnitTests/FailingTestFixture.cs +14 -0
  236. data/spec/support/TestSolution/TestSolution.XUnitTests/Properties/AssemblyInfo.cs +36 -0
  237. data/spec/support/TestSolution/TestSolution.XUnitTests/TestSolution.XUnitTests.csproj +108 -0
  238. data/spec/support/TestSolution/TestSolution.build +25 -0
  239. data/spec/support/TestSolution/TestSolution.sln +75 -0
  240. data/spec/support/TestSolution/TestSolution.vsmdi +6 -0
  241. data/spec/support/TestSolution/TestSolution/Class1.cs +17 -0
  242. data/spec/support/TestSolution/TestSolution/Properties/AssemblyInfo.cs +36 -0
  243. data/spec/support/TestSolution/TestSolution/TestSolution.csproj +97 -0
  244. data/spec/support/Tools/FluentMigrator-0.9/FluentMigrator.MSBuild.dll +0 -0
  245. data/spec/support/Tools/FluentMigrator-0.9/FluentMigrator.NAnt.dll +0 -0
  246. data/spec/support/Tools/FluentMigrator-0.9/FluentMigrator.Runner.dll +0 -0
  247. data/spec/support/Tools/FluentMigrator-0.9/FluentMigrator.Runner.pdb +0 -0
  248. data/spec/support/Tools/FluentMigrator-0.9/FluentMigrator.Tests.dll +0 -0
  249. data/spec/support/Tools/FluentMigrator-0.9/FluentMigrator.Tests.pdb +0 -0
  250. data/spec/support/Tools/FluentMigrator-0.9/FluentMigrator.dll +0 -0
  251. data/spec/support/Tools/FluentMigrator-0.9/FluentMigrator.pdb +0 -0
  252. data/spec/support/Tools/FluentMigrator-0.9/Migrate.exe +0 -0
  253. data/spec/support/Tools/FluentMigrator-0.9/Migrate.exe.config +6 -0
  254. data/spec/support/Tools/FluentMigrator-0.9/Moq.dll +0 -0
  255. data/spec/support/Tools/FluentMigrator-0.9/Moq.xml +3467 -0
  256. data/spec/support/Tools/FluentMigrator-0.9/MySql.Data.dll +0 -0
  257. data/spec/support/Tools/FluentMigrator-0.9/NAnt.Core.dll +0 -0
  258. data/spec/support/Tools/FluentMigrator-0.9/NAnt.Core.xml +14880 -0
  259. data/spec/support/Tools/FluentMigrator-0.9/Oracle.DataAccess.dll +0 -0
  260. data/spec/support/Tools/FluentMigrator-0.9/System.Data.SQLite.DLL +0 -0
  261. data/spec/support/Tools/FluentMigrator-0.9/log4net.dll +0 -0
  262. data/spec/support/Tools/FluentMigrator-0.9/nunit.framework.dll +0 -0
  263. data/spec/support/Tools/FluentMigrator-0.9/nunit.should.dll +0 -0
  264. data/spec/support/Tools/FluentMigrator-0.9/testscript.sql +1 -0
  265. data/spec/support/Tools/MSTest-2008/MSTest.exe +0 -0
  266. data/spec/support/Tools/MSTest-2008/Microsoft.VisualStudio.QualityTools.CommandLine.dll +0 -0
  267. data/spec/support/Tools/MSTest-2008/Microsoft.VisualStudio.QualityTools.Common.dll +0 -0
  268. data/spec/support/Tools/MSTest-2008/Microsoft.VisualStudio.QualityTools.ControllerObject.dll +0 -0
  269. data/spec/support/Tools/MSTest-2008/Microsoft.VisualStudio.QualityTools.ExecutionCommon.dll +0 -0
  270. data/spec/support/Tools/MSTest-2008/Microsoft.VisualStudio.QualityTools.TMI.dll +0 -0
  271. data/spec/support/Tools/MSTest-2008/Microsoft.VisualStudio.QualityTools.Tips.UnitTest.Adapter.dll +0 -0
  272. data/spec/support/Tools/MSTest-2008/Microsoft.VisualStudio.QualityTools.Tips.UnitTest.AssemblyResolver.dll +0 -0
  273. data/spec/support/Tools/MSTest-2008/Microsoft.VisualStudio.QualityTools.Tips.UnitTest.ObjectModel.dll +0 -0
  274. data/spec/support/Tools/MSTest-2008/Microsoft.VisualStudio.QualityTools.Tips.UnitTest.Tip.dll +0 -0
  275. data/spec/support/Tools/MSTest-2010/MSTest.exe +0 -0
  276. data/spec/support/Tools/MSTest-2010/MSTest.exe.config +31 -0
  277. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.AgentObject.dll +0 -0
  278. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.AgentProcessManager.dll +0 -0
  279. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.CMI.dll +0 -0
  280. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.CheckinPolicies.dll +0 -0
  281. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.CodeCoverage.dll +0 -0
  282. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.CodedUITest.Controls.dll +0 -0
  283. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.CodedUITestFramework.dll +0 -0
  284. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.CodedUITestPackage.dll +0 -0
  285. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.CommandLine.dll +0 -0
  286. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Common.dll +0 -0
  287. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Controller.SpooledJob.dll +0 -0
  288. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.ControllerObject.dll +0 -0
  289. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.DataCollectionAgentObject.dll +0 -0
  290. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.ExecutionCommon.dll +0 -0
  291. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.HostAdapters.ASPNETAdapter.dll +0 -0
  292. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.HostAdapters.ASPNETAgent.dll +0 -0
  293. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Linking.dll +0 -0
  294. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.LoadTest.dll +0 -0
  295. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.LoadTestExcelAddIn.dll +0 -0
  296. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.LoadTestExcelAddIn.dll.manifest +296 -0
  297. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.LoadTestExcelAddIn.vsto +150 -0
  298. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.LoadTestExcelCommon.dll +0 -0
  299. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.LoadTestExcelCommon.tlb +0 -0
  300. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.LoadTestExec.dll +0 -0
  301. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.LoadTestFramework.dll +0 -0
  302. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.LoadTestPackage.dll +0 -0
  303. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.LoadTestUI.dll +0 -0
  304. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.NICServices.dll +0 -0
  305. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.NetworkEmulation.dll +0 -0
  306. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.OperationalStore.ClientHelper.dll +0 -0
  307. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.RecorderBar.dll +0 -0
  308. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.RecorderBarBHO100.dll +0 -0
  309. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Resource.dll +0 -0
  310. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Sqm.dll +0 -0
  311. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.TMI.dll +0 -0
  312. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.TestCaseManagement.dll +0 -0
  313. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.GenericTest.Adapter.dll +0 -0
  314. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.GenericTest.ObjectModel.dll +0 -0
  315. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.GenericTest.Tip.dll +0 -0
  316. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.ManualTest.Adapter.dll +0 -0
  317. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.ManualTest.ObjectModel.dll +0 -0
  318. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.ManualTest.Tip.dll +0 -0
  319. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.OrderedTest.Adapter.dll +0 -0
  320. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.OrderedTest.ObjectModel.dll +0 -0
  321. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.OrderedTest.Tip.dll +0 -0
  322. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.TuipPackage.dll +0 -0
  323. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.UnitTest.Adapter.dll +0 -0
  324. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.UnitTest.AssemblyResolver.dll +0 -0
  325. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.UnitTest.ObjectModel.dll +0 -0
  326. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.UnitTest.Tip.dll +0 -0
  327. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.WebLoadTest.Tip.dll +0 -0
  328. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.UnitTestFramework.dll +0 -0
  329. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Vsip.dll +0 -0
  330. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.WarehouseCommon.dll +0 -0
  331. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.WebTestFramework.dll +0 -0
  332. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.WebTestPlayback.dll +0 -0
  333. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Wizard.TestProjectWizards.dll +0 -0
  334. data/spec/support/Tools/MSTest-2010/mstest.reg +0 -0
  335. data/spec/support/Tools/Machine.Specifications-0.5.3/lib/Machine.Specifications.TDNetRunner.dll +0 -0
  336. data/spec/support/Tools/Machine.Specifications-0.5.3/lib/Machine.Specifications.dll +0 -0
  337. data/spec/support/Tools/Machine.Specifications-0.5.3/lib/Machine.Specifications.dll.tdnet +5 -0
  338. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/CommandLine.dll +0 -0
  339. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/CommandLine.xml +504 -0
  340. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallResharperRunner.4.1.bat +5 -0
  341. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallResharperRunner.4.5.bat +5 -0
  342. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallResharperRunner.5.0 - VS2008.bat +5 -0
  343. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallResharperRunner.5.0 - VS2010.bat +5 -0
  344. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallResharperRunner.5.1 - VS2008.bat +5 -0
  345. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallResharperRunner.5.1 - VS2010.bat +5 -0
  346. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallResharperRunner.6.0 - VS2008.bat +5 -0
  347. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallResharperRunner.6.0 - VS2010.bat +5 -0
  348. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallResharperRunner.6.1 - VS2008.bat +5 -0
  349. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallResharperRunner.6.1 - VS2010.bat +5 -0
  350. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallTDNetRunner.bat +16 -0
  351. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallTDNetRunnerSilent.bat +16 -0
  352. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/License.txt +54 -0
  353. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.GallioAdapter.3.1.dll +0 -0
  354. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.GallioAdapter.plugin +43 -0
  355. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.ReSharperRunner.4.1.dll +0 -0
  356. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.ReSharperRunner.4.5.dll +0 -0
  357. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.ReSharperRunner.5.0.dll +0 -0
  358. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.ReSharperRunner.5.1.dll +0 -0
  359. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.ReSharperRunner.6.0.dll +0 -0
  360. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.ReSharperRunner.6.1.dll +0 -0
  361. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.Reporting.Templates.dll +0 -0
  362. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.Reporting.dll +0 -0
  363. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.SeleniumSupport.dll +0 -0
  364. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.TDNetRunner.dll +0 -0
  365. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.WatinSupport.dll +0 -0
  366. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.dll +0 -0
  367. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.dll.tdnet +5 -0
  368. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/Spark.dll +0 -0
  369. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/TestDriven.Framework.dll +0 -0
  370. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/install.ps1 +6 -0
  371. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/mspec-clr4.exe +0 -0
  372. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/mspec-clr4.exe.config +6 -0
  373. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/mspec-x86-clr4.exe +0 -0
  374. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/mspec-x86-clr4.exe.config +6 -0
  375. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/mspec-x86.exe +0 -0
  376. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/mspec.exe +0 -0
  377. data/spec/support/Tools/NAnt-0.85/COPYING.txt +340 -0
  378. data/spec/support/Tools/NAnt-0.85/README.txt +144 -0
  379. data/spec/support/Tools/NChurn-v0.4/LICENSE.txt +133 -0
  380. data/spec/support/Tools/NChurn-v0.4/NChurn.exe +0 -0
  381. data/spec/support/Tools/NChurn-v0.4/README.md +171 -0
  382. data/spec/support/Tools/NChurn-v0.4/VERSION +1 -0
  383. data/spec/support/Tools/NChurn-v0.4/churn-0.4.0.0.txt +178 -0
  384. data/spec/support/Tools/NCover-v3.3/ActiproEULA.hml +287 -0
  385. data/spec/support/Tools/NCover-v3.3/ActiproSoftware.Shared.Wpf30.dll +0 -0
  386. data/spec/support/Tools/NCover-v3.3/ActiproSoftware.SyntaxEditor.Addons.DotNet.Wpf30.dll +0 -0
  387. data/spec/support/Tools/NCover-v3.3/ActiproSoftware.SyntaxEditor.Wpf30.dll +0 -0
  388. data/spec/support/Tools/NCover-v3.3/ActiproSoftware.Text.Net20.dll +0 -0
  389. data/spec/support/Tools/NCover-v3.3/AdminBootstrapper.exe +0 -0
  390. data/spec/support/Tools/NCover-v3.3/Build Task Plugins/MSBuildNCoverExample.proj +237 -0
  391. data/spec/support/Tools/NCover-v3.3/Build Task Plugins/MSBuildReportingExample.proj +224 -0
  392. data/spec/support/Tools/NCover-v3.3/Build Task Plugins/NAntNCoverExample.build +241 -0
  393. data/spec/support/Tools/NCover-v3.3/Build Task Plugins/NAntReportingExample.build +218 -0
  394. data/spec/support/Tools/NCover-v3.3/Build Task Plugins/NCover.MSBuildTasks.dll +0 -0
  395. data/spec/support/Tools/NCover-v3.3/Build Task Plugins/NCover.NAntTasks.dll +0 -0
  396. data/spec/support/Tools/NCover-v3.3/Build Task Plugins/NCoverExplorer.MSBuildTasks.dll +0 -0
  397. data/spec/support/Tools/NCover-v3.3/Build Task Plugins/NCoverExplorer.NAntTasks.dll +0 -0
  398. data/spec/support/Tools/NCover-v3.3/CC.Net/NCoverReporting30.xsl +2313 -0
  399. data/spec/support/Tools/NCover-v3.3/CC.Net/dashboard.config +55 -0
  400. data/spec/support/Tools/NCover-v3.3/CC.Net/excanvas.js +35 -0
  401. data/spec/support/Tools/NCover-v3.3/CC.Net/g.png +0 -0
  402. data/spec/support/Tools/NCover-v3.3/CC.Net/jquery-1.3.2.min.js +19 -0
  403. data/spec/support/Tools/NCover-v3.3/CC.Net/r.png +0 -0
  404. data/spec/support/Tools/NCover-v3.3/CC.Net/readme.txt +51 -0
  405. data/spec/support/Tools/NCover-v3.3/CC.Net/trends.js +184 -0
  406. data/spec/support/Tools/NCover-v3.3/CC.Net/y.png +0 -0
  407. data/spec/support/Tools/NCover-v3.3/MSVCM90.dll +0 -0
  408. data/spec/support/Tools/NCover-v3.3/MSVCP90.dll +0 -0
  409. data/spec/support/Tools/NCover-v3.3/MSVCR90.dll +0 -0
  410. data/spec/support/Tools/NCover-v3.3/Microsoft.VC90.CRT.manifest +13 -0
  411. data/spec/support/Tools/NCover-v3.3/Mindscape.LightSpeed.Linq.dll +0 -0
  412. data/spec/support/Tools/NCover-v3.3/Mindscape.LightSpeed.dll +0 -0
  413. data/spec/support/Tools/NCover-v3.3/NCover.Console.exe +0 -0
  414. data/spec/support/Tools/NCover-v3.3/NCover.Console.exe.config +55 -0
  415. data/spec/support/Tools/NCover-v3.3/NCover.Data.x86.dll +0 -0
  416. data/spec/support/Tools/NCover-v3.3/NCover.Explorer.Framework.dll +0 -0
  417. data/spec/support/Tools/NCover-v3.3/NCover.Explorer.exe +0 -0
  418. data/spec/support/Tools/NCover-v3.3/NCover.Explorer.exe.config +16 -0
  419. data/spec/support/Tools/NCover-v3.3/NCover.Framework.XmlSerializers.dll +0 -0
  420. data/spec/support/Tools/NCover-v3.3/NCover.Framework.dll +0 -0
  421. data/spec/support/Tools/NCover-v3.3/NCover.Interfaces.Core.dll +0 -0
  422. data/spec/support/Tools/NCover-v3.3/NCover.Interfaces.dll +0 -0
  423. data/spec/support/Tools/NCover-v3.3/NCover.Legacy.Configuration.dll +0 -0
  424. data/spec/support/Tools/NCover-v3.3/NCover.Lib.x86.dll +0 -0
  425. data/spec/support/Tools/NCover-v3.3/NCover.Registration.exe +0 -0
  426. data/spec/support/Tools/NCover-v3.3/NCover.Reporting.exe +0 -0
  427. data/spec/support/Tools/NCover-v3.3/NCover.Runner.dll +0 -0
  428. data/spec/support/Tools/NCover-v3.3/NCover.UpConvert.exe +0 -0
  429. data/spec/support/Tools/NCover-v3.3/NCover.Utilities.dll +0 -0
  430. data/spec/support/Tools/NCover-v3.3/NCoverEULA.pdf +0 -0
  431. data/spec/support/Tools/NCover-v3.3/NCoverExplorer.Console.exe +0 -0
  432. data/spec/support/Tools/NCover-v3.3/ReportingExample.config +213 -0
  433. data/spec/support/Tools/NCover-v3.3/System.Data.SQLite.dll +0 -0
  434. data/spec/support/Tools/NDepend-v2.12/EULA_NDepend.txt +94 -0
  435. data/spec/support/Tools/NDepend-v2.12/Lib/DevExpress.Data.v8.2.dll +0 -0
  436. data/spec/support/Tools/NDepend-v2.12/Lib/DevExpress.OfficeSkins.v8.2.dll +0 -0
  437. data/spec/support/Tools/NDepend-v2.12/Lib/DevExpress.Utils.v8.2.dll +0 -0
  438. data/spec/support/Tools/NDepend-v2.12/Lib/DevExpress.XtraBars.v8.2.dll +0 -0
  439. data/spec/support/Tools/NDepend-v2.12/Lib/DevExpress.XtraEditors.v8.2.dll +0 -0
  440. data/spec/support/Tools/NDepend-v2.12/Lib/DevExpress.XtraNavBar.v8.2.dll +0 -0
  441. data/spec/support/Tools/NDepend-v2.12/Lib/EnvDTE.dll +0 -0
  442. data/spec/support/Tools/NDepend-v2.12/Lib/Microsoft.Msagl.Drawing.dll +0 -0
  443. data/spec/support/Tools/NDepend-v2.12/Lib/Microsoft.Msagl.GraphViewerGdi.dll +0 -0
  444. data/spec/support/Tools/NDepend-v2.12/Lib/Microsoft.Msagl.GraphViewerGdi.dll.config +3 -0
  445. data/spec/support/Tools/NDepend-v2.12/Lib/Microsoft.Msagl.dll +0 -0
  446. data/spec/support/Tools/NDepend-v2.12/Lib/Microsoft.VisualStudio.OLE.Interop.dll +0 -0
  447. data/spec/support/Tools/NDepend-v2.12/Lib/Microsoft.VisualStudio.Shell.Interop.dll +0 -0
  448. data/spec/support/Tools/NDepend-v2.12/Lib/Microsoft.VisualStudio.Shell.dll +0 -0
  449. data/spec/support/Tools/NDepend-v2.12/Lib/Mono.Cecil.Pdb.dll +0 -0
  450. data/spec/support/Tools/NDepend-v2.12/Lib/Mono.Cecil.dll +0 -0
  451. data/spec/support/Tools/NDepend-v2.12/Lib/NDepend.AddIn.dll +0 -0
  452. data/spec/support/Tools/NDepend-v2.12/Lib/NDepend.Analysis.dll +0 -0
  453. data/spec/support/Tools/NDepend-v2.12/Lib/NDepend.CQL.dll +0 -0
  454. data/spec/support/Tools/NDepend-v2.12/Lib/NDepend.Framework.dll +0 -0
  455. data/spec/support/Tools/NDepend-v2.12/Lib/NDepend.Platform.DotNet.dll +0 -0
  456. data/spec/support/Tools/NDepend-v2.12/Lib/NDepend.Skins.dll +0 -0
  457. data/spec/support/Tools/NDepend-v2.12/Lib/NDepend.UI.dll +0 -0
  458. data/spec/support/Tools/NDepend-v2.12/Lib/msvcp71.dll +0 -0
  459. data/spec/support/Tools/NDepend-v2.12/Lib/msvcr71.dll +0 -0
  460. data/spec/support/Tools/NDepend-v2.12/NDepend.Console.exe +0 -0
  461. data/spec/support/Tools/NDepend-v2.12/NDepend.Console.exe.config +8 -0
  462. data/spec/support/Tools/NDepend-v2.12/QuickStartTutorial_NDepend.txt +152 -0
  463. data/spec/support/Tools/NDepend-v2.12/VisualNDepend.exe +0 -0
  464. data/spec/support/Tools/NUnit-v2.5/NUnitFitTests.html +277 -0
  465. data/spec/support/Tools/NUnit-v2.5/NUnitTests.config +84 -0
  466. data/spec/support/Tools/NUnit-v2.5/NUnitTests.nunit +14 -0
  467. data/spec/support/Tools/NUnit-v2.5/TestResult.xml +32 -0
  468. data/spec/support/Tools/NUnit-v2.5/agent.conf +4 -0
  469. data/spec/support/Tools/NUnit-v2.5/agent.log.conf +18 -0
  470. data/spec/support/Tools/NUnit-v2.5/clr.bat +96 -0
  471. data/spec/support/Tools/NUnit-v2.5/framework/nunit.framework.dll +0 -0
  472. data/spec/support/Tools/NUnit-v2.5/framework/nunit.framework.xml +10088 -0
  473. data/spec/support/Tools/NUnit-v2.5/framework/nunit.mocks.dll +0 -0
  474. data/spec/support/Tools/NUnit-v2.5/framework/pnunit.framework.dll +0 -0
  475. data/spec/support/Tools/NUnit-v2.5/launcher.log.conf +18 -0
  476. data/spec/support/Tools/NUnit-v2.5/lib/Failure.png +0 -0
  477. data/spec/support/Tools/NUnit-v2.5/lib/Ignored.png +0 -0
  478. data/spec/support/Tools/NUnit-v2.5/lib/Inconclusive.png +0 -0
  479. data/spec/support/Tools/NUnit-v2.5/lib/Skipped.png +0 -0
  480. data/spec/support/Tools/NUnit-v2.5/lib/Success.png +0 -0
  481. data/spec/support/Tools/NUnit-v2.5/lib/fit.dll +0 -0
  482. data/spec/support/Tools/NUnit-v2.5/lib/log4net.dll +0 -0
  483. data/spec/support/Tools/NUnit-v2.5/lib/nunit-console-runner.dll +0 -0
  484. data/spec/support/Tools/NUnit-v2.5/lib/nunit-gui-runner.dll +0 -0
  485. data/spec/support/Tools/NUnit-v2.5/lib/nunit.core.dll +0 -0
  486. data/spec/support/Tools/NUnit-v2.5/lib/nunit.core.interfaces.dll +0 -0
  487. data/spec/support/Tools/NUnit-v2.5/lib/nunit.fixtures.dll +0 -0
  488. data/spec/support/Tools/NUnit-v2.5/lib/nunit.uiexception.dll +0 -0
  489. data/spec/support/Tools/NUnit-v2.5/lib/nunit.uikit.dll +0 -0
  490. data/spec/support/Tools/NUnit-v2.5/lib/nunit.util.dll +0 -0
  491. data/spec/support/Tools/NUnit-v2.5/nunit-agent.exe +0 -0
  492. data/spec/support/Tools/NUnit-v2.5/nunit-agent.exe.config +87 -0
  493. data/spec/support/Tools/NUnit-v2.5/nunit-console-x86.exe +0 -0
  494. data/spec/support/Tools/NUnit-v2.5/nunit-console-x86.exe.config +87 -0
  495. data/spec/support/Tools/NUnit-v2.5/nunit-console.exe +0 -0
  496. data/spec/support/Tools/NUnit-v2.5/nunit-console.exe.config +87 -0
  497. data/spec/support/Tools/NUnit-v2.5/nunit-x86.exe +0 -0
  498. data/spec/support/Tools/NUnit-v2.5/nunit-x86.exe.config +95 -0
  499. data/spec/support/Tools/NUnit-v2.5/nunit.exe +0 -0
  500. data/spec/support/Tools/NUnit-v2.5/nunit.exe.config +95 -0
  501. data/spec/support/Tools/NUnit-v2.5/nunit.framework.dll +0 -0
  502. data/spec/support/Tools/NUnit-v2.5/pnunit-agent.exe +0 -0
  503. data/spec/support/Tools/NUnit-v2.5/pnunit-agent.exe.config +87 -0
  504. data/spec/support/Tools/NUnit-v2.5/pnunit-launcher.exe +0 -0
  505. data/spec/support/Tools/NUnit-v2.5/pnunit-launcher.exe.config +87 -0
  506. data/spec/support/Tools/NUnit-v2.5/pnunit.framework.dll +0 -0
  507. data/spec/support/Tools/NUnit-v2.5/pnunit.tests.dll +0 -0
  508. data/spec/support/Tools/NUnit-v2.5/runFile.exe +0 -0
  509. data/spec/support/Tools/NUnit-v2.5/runFile.exe.config +43 -0
  510. data/spec/support/Tools/NUnit-v2.5/runpnunit.bat +2 -0
  511. data/spec/support/Tools/NUnit-v2.5/test.conf +24 -0
  512. data/spec/support/Tools/PartCover-v2.3/Interop.PartCover.dll +0 -0
  513. data/spec/support/Tools/PartCover-v2.3/PartCover Browser Manual.rtf +28853 -0
  514. data/spec/support/Tools/PartCover-v2.3/PartCover Console Manual.rtf +203 -0
  515. data/spec/support/Tools/PartCover-v2.3/PartCover.Browser.Api.dll +0 -0
  516. data/spec/support/Tools/PartCover-v2.3/PartCover.Browser.exe +0 -0
  517. data/spec/support/Tools/PartCover-v2.3/PartCover.Browser.exe.config +51 -0
  518. data/spec/support/Tools/PartCover-v2.3/PartCover.CorDriver.dll +0 -0
  519. data/spec/support/Tools/PartCover-v2.3/PartCover.Framework.dll +0 -0
  520. data/spec/support/Tools/PartCover-v2.3/PartCover.exe +0 -0
  521. data/spec/support/Tools/PartCover-v2.3/PartCover.exe.config +4 -0
  522. data/spec/support/Tools/PartCover-v2.3/PartViewer.dll +0 -0
  523. data/spec/support/Tools/PartCover-v2.3/app.ico +0 -0
  524. data/spec/support/Tools/PartCover-v2.3/log4net.dll +0 -0
  525. data/spec/support/Tools/PartCover-v2.3/xslt/Report By Assembly.xslt +54 -0
  526. data/spec/support/Tools/PartCover-v2.3/xslt/Report By Class.xslt +52 -0
  527. data/spec/support/Tools/SpecFlow/Antlr3.Runtime.dll +0 -0
  528. data/spec/support/Tools/SpecFlow/Interop.SHDocVw.dll +0 -0
  529. data/spec/support/Tools/SpecFlow/TechTalk.SpecFlow.Generator.dll +0 -0
  530. data/spec/support/Tools/SpecFlow/TechTalk.SpecFlow.Parser.dll +0 -0
  531. data/spec/support/Tools/SpecFlow/TechTalk.SpecFlow.Reporting.dll +0 -0
  532. data/spec/support/Tools/SpecFlow/TechTalk.SpecFlow.VsIntegration.dll +0 -0
  533. data/spec/support/Tools/SpecFlow/TechTalk.SpecFlow.dll +0 -0
  534. data/spec/support/Tools/SpecFlow/TechTalk.SpecFlow.targets +58 -0
  535. data/spec/support/Tools/SpecFlow/TechTalk.SpecFlow.tasks +17 -0
  536. data/spec/support/Tools/SpecFlow/changelog.txt +50 -0
  537. data/spec/support/Tools/SpecFlow/specflow.exe +0 -0
  538. data/spec/support/Tools/XUnit-v1.9/EULA.txt +29 -0
  539. data/spec/support/Tools/XUnit-v1.9/HTML.xslt +126 -0
  540. data/spec/support/Tools/XUnit-v1.9/NUnitXml.xslt +121 -0
  541. data/spec/support/Tools/XUnit-v1.9/xunit.console.clr4.exe +0 -0
  542. data/spec/support/Tools/XUnit-v1.9/xunit.console.clr4.exe.config +21 -0
  543. data/spec/support/Tools/XUnit-v1.9/xunit.console.clr4.x86.exe +0 -0
  544. data/spec/support/Tools/XUnit-v1.9/xunit.console.clr4.x86.exe.config +21 -0
  545. data/spec/support/Tools/XUnit-v1.9/xunit.console.exe +0 -0
  546. data/spec/support/Tools/XUnit-v1.9/xunit.console.exe.config +21 -0
  547. data/spec/support/Tools/XUnit-v1.9/xunit.console.x86.exe +0 -0
  548. data/spec/support/Tools/XUnit-v1.9/xunit.console.x86.exe.config +21 -0
  549. data/spec/support/Tools/XUnit-v1.9/xunit.dll +0 -0
  550. data/spec/support/Tools/XUnit-v1.9/xunit.dll.tdnet +5 -0
  551. data/spec/support/Tools/XUnit-v1.9/xunit.extensions.dll +0 -0
  552. data/spec/support/Tools/XUnit-v1.9/xunit.extensions.xml +805 -0
  553. data/spec/support/Tools/XUnit-v1.9/xunit.gui.clr4.exe +0 -0
  554. data/spec/support/Tools/XUnit-v1.9/xunit.gui.clr4.x86.exe +0 -0
  555. data/spec/support/Tools/XUnit-v1.9/xunit.gui.exe +0 -0
  556. data/spec/support/Tools/XUnit-v1.9/xunit.gui.x86.exe +0 -0
  557. data/spec/support/Tools/XUnit-v1.9/xunit.installer.exe +0 -0
  558. data/spec/support/Tools/XUnit-v1.9/xunit.runner.msbuild.dll +0 -0
  559. data/spec/support/Tools/XUnit-v1.9/xunit.runner.tdnet.dll +0 -0
  560. data/spec/support/Tools/XUnit-v1.9/xunit.runner.utility.dll +0 -0
  561. data/spec/support/Tools/XUnit-v1.9/xunit.runner.utility.xml +1212 -0
  562. data/spec/support/Tools/XUnit-v1.9/xunit.xml +2604 -0
  563. data/spec/support/assemblyinfotester.rb +52 -0
  564. data/spec/support/csc/File1.cs +9 -0
  565. data/spec/support/csc/File2.cs +9 -0
  566. data/spec/support/csc/output/ignorethis.txt +1 -0
  567. data/spec/support/ironruby_validator.rb +26 -0
  568. data/spec/support/msbuildtestdata.rb +32 -0
  569. data/spec/support/nanttestdata.rb +33 -0
  570. data/spec/support/ncoverconsoletestdata.rb +20 -0
  571. data/spec/support/ncoverreporttestdata.rb +26 -0
  572. data/spec/support/nokogiri_validator.rb +15 -0
  573. data/spec/support/nuspec/nuspec.xsd +84 -0
  574. data/spec/support/outputtestdata.rb +13 -0
  575. data/spec/support/test.yml +4 -0
  576. data/spec/support/yamlconfig/msbuild.yml +5 -0
  577. data/spec/support/yamlconfig/yaml_autoconfig_test.yml +1 -0
  578. data/spec/support/zip/files/subfolder/sub file.txt +1 -0
  579. data/spec/support/zip/files/testfile.txt +1 -0
  580. data/spec/support/ziptestdata.rb +13 -0
  581. data/spec/unzip_spec.rb +57 -0
  582. data/spec/xbuild_spec.rb +15 -0
  583. data/spec/xunit_spec.rb +200 -0
  584. data/spec/yamlconfig_spec.rb +49 -0
  585. data/spec/zip_spec.rb +215 -0
  586. metadata +1231 -191
  587. data/lib/albacore/albacore_module.rb +0 -53
  588. data/lib/albacore/application.rb +0 -32
  589. data/lib/albacore/asmver.rb +0 -67
  590. data/lib/albacore/asmver/cpp.rb +0 -20
  591. data/lib/albacore/asmver/cs.rb +0 -17
  592. data/lib/albacore/asmver/engine.rb +0 -43
  593. data/lib/albacore/asmver/fs.rb +0 -25
  594. data/lib/albacore/asmver/vb.rb +0 -17
  595. data/lib/albacore/build.rb +0 -203
  596. data/lib/albacore/cmd_config.rb +0 -55
  597. data/lib/albacore/cross_platform_cmd.rb +0 -177
  598. data/lib/albacore/dsl.rb +0 -118
  599. data/lib/albacore/errors/unfilled_property_error.rb +0 -14
  600. data/lib/albacore/ext/README.md +0 -12
  601. data/lib/albacore/ext/teamcity.rb +0 -64
  602. data/lib/albacore/facts.rb +0 -25
  603. data/lib/albacore/logging.rb +0 -29
  604. data/lib/albacore/migrate.rb +0 -175
  605. data/lib/albacore/nugets_authentication.rb +0 -9
  606. data/lib/albacore/nugets_pack.rb +0 -283
  607. data/lib/albacore/nugets_restore.rb +0 -131
  608. data/lib/albacore/paths.rb +0 -30
  609. data/lib/albacore/project.rb +0 -104
  610. data/lib/albacore/restore_hint_paths.rb +0 -112
  611. data/lib/albacore/semver.rb +0 -5
  612. data/lib/albacore/tasks/README.md +0 -16
  613. data/lib/albacore/tasks/albasemver.rb +0 -49
  614. data/lib/albacore/tasks/projectlint.rb +0 -81
  615. data/lib/albacore/tasks/versionizer.rb +0 -65
  616. data/lib/albacore/test_runner.rb +0 -39
  617. data/spec/Rakefile +0 -5
  618. data/spec/albacore_spec.rb +0 -35
  619. data/spec/cross_platform_cmd_spec.rb +0 -77
  620. data/spec/ext_teamcity_spec.rb +0 -71
  621. data/spec/facts_spec.rb +0 -7
  622. data/spec/migrate_spec.rb +0 -80
  623. data/spec/nugets_pack_spec.rb +0 -66
  624. data/spec/nugets_restore_spec.rb +0 -55
  625. data/spec/project_spec.rb +0 -26
  626. data/spec/projectlint/added_but_not_on_filesystem/aproject.csproj +0 -29
  627. data/spec/projectlint/correct/File.cs +0 -1
  628. data/spec/projectlint/correct/Image.txt +0 -1
  629. data/spec/projectlint/correct/MyHeavy.heavy +0 -1
  630. data/spec/projectlint/correct/Schema.xsd +0 -1
  631. data/spec/projectlint/correct/SubFolder/AnotherFile.cs +0 -1
  632. data/spec/projectlint/correct/aproject.csproj +0 -29
  633. data/spec/projectlint/on_filesystem_but_not_added/File.cs +0 -1
  634. data/spec/projectlint/on_filesystem_but_not_added/Image.txt +0 -1
  635. data/spec/projectlint/on_filesystem_but_not_added/aproject.csproj +0 -11
  636. data/spec/projectlint_spec.rb +0 -77
  637. data/spec/sh_interceptor.rb +0 -33
  638. data/spec/smoke_spec.rb +0 -9
  639. data/spec/testdata/Library1.fs +0 -4
  640. data/spec/testdata/Project.fsproj +0 -58
  641. data/spec/testdata/Project/Project.sln +0 -20
  642. data/spec/testdata/Project/Project.v11.suo +0 -0
  643. data/spec/testdata/example.nuspec +0 -14
  644. data/spec/testdata/packages.config +0 -6
@@ -0,0 +1,5 @@
1
+ <TestRunner>
2
+ <FriendlyName>xUnit.net {0}.{1}.{2} build {3}</FriendlyName>
3
+ <AssemblyPath>xunit.runner.tdnet.dll</AssemblyPath>
4
+ <TypeName>Xunit.Runner.TdNet.TdNetRunner</TypeName>
5
+ </TestRunner>
@@ -0,0 +1,805 @@
1
+ <?xml version="1.0"?>
2
+ <doc>
3
+ <assembly>
4
+ <name>xunit.extensions</name>
5
+ </assembly>
6
+ <members>
7
+ <member name="T:Xunit.Extensions.Assertions">
8
+ <summary>
9
+ A wrapper for Assert which is used by <see cref="T:Xunit.Extensions.TestClass"/>.
10
+ </summary>
11
+ </member>
12
+ <member name="M:Xunit.Extensions.Assertions.Contains``1(``0,System.Collections.Generic.IEnumerable{``0})">
13
+ <summary>
14
+ Verifies that a collection contains a given object.
15
+ </summary>
16
+ <typeparam name="T">The type of the object to be verified</typeparam>
17
+ <param name="expected">The object expected to be in the collection</param>
18
+ <param name="collection">The collection to be inspected</param>
19
+ <exception cref="T:Xunit.Sdk.ContainsException">Thrown when the object is not present in the collection</exception>
20
+ </member>
21
+ <member name="M:Xunit.Extensions.Assertions.Contains``1(``0,System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEqualityComparer{``0})">
22
+ <summary>
23
+ Verifies that a collection contains a given object, using an equality comparer.
24
+ </summary>
25
+ <typeparam name="T">The type of the object to be verified</typeparam>
26
+ <param name="expected">The object expected to be in the collection</param>
27
+ <param name="collection">The collection to be inspected</param>
28
+ <param name="comparer">The comparer used to equate objects in the collection with the expected object</param>
29
+ <exception cref="T:Xunit.Sdk.ContainsException">Thrown when the object is not present in the collection</exception>
30
+ </member>
31
+ <member name="M:Xunit.Extensions.Assertions.Contains(System.String,System.String)">
32
+ <summary>
33
+ Verifies that a string contains a given sub-string, using the current culture.
34
+ </summary>
35
+ <param name="expectedSubstring">The sub-string expected to be in the string</param>
36
+ <param name="actualString">The string to be inspected</param>
37
+ <exception cref="T:Xunit.Sdk.ContainsException">Thrown when the sub-string is not present inside the string</exception>
38
+ </member>
39
+ <member name="M:Xunit.Extensions.Assertions.Contains(System.String,System.String,System.StringComparison)">
40
+ <summary>
41
+ Verifies that a string contains a given sub-string, using the given comparison type.
42
+ </summary>
43
+ <param name="expectedSubstring">The sub-string expected to be in the string</param>
44
+ <param name="actualString">The string to be inspected</param>
45
+ <param name="comparisonType">The type of string comparison to perform</param>
46
+ <exception cref="T:Xunit.Sdk.ContainsException">Thrown when the sub-string is not present inside the string</exception>
47
+ </member>
48
+ <member name="M:Xunit.Extensions.Assertions.DoesNotContain``1(``0,System.Collections.Generic.IEnumerable{``0})">
49
+ <summary>
50
+ Verifies that a collection does not contain a given object.
51
+ </summary>
52
+ <typeparam name="T">The type of the object to be compared</typeparam>
53
+ <param name="expected">The object that is expected not to be in the collection</param>
54
+ <param name="collection">The collection to be inspected</param>
55
+ <exception cref="T:Xunit.Sdk.DoesNotContainException">Thrown when the object is present inside the container</exception>
56
+ </member>
57
+ <member name="M:Xunit.Extensions.Assertions.DoesNotContain``1(``0,System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEqualityComparer{``0})">
58
+ <summary>
59
+ Verifies that a collection does not contain a given object, using an equality comparer.
60
+ </summary>
61
+ <typeparam name="T">The type of the object to be compared</typeparam>
62
+ <param name="expected">The object that is expected not to be in the collection</param>
63
+ <param name="collection">The collection to be inspected</param>
64
+ <param name="comparer">The comparer used to equate objects in the collection with the expected object</param>
65
+ <exception cref="T:Xunit.Sdk.DoesNotContainException">Thrown when the object is present inside the container</exception>
66
+ </member>
67
+ <member name="M:Xunit.Extensions.Assertions.DoesNotContain(System.String,System.String)">
68
+ <summary>
69
+ Verifies that a string does not contain a given sub-string, using the current culture.
70
+ </summary>
71
+ <param name="expectedSubstring">The sub-string which is expected not to be in the string</param>
72
+ <param name="actualString">The string to be inspected</param>
73
+ <exception cref="T:Xunit.Sdk.DoesNotContainException">Thrown when the sub-string is present inside the string</exception>
74
+ </member>
75
+ <member name="M:Xunit.Extensions.Assertions.DoesNotContain(System.String,System.String,System.StringComparison)">
76
+ <summary>
77
+ Verifies that a string does not contain a given sub-string, using the current culture.
78
+ </summary>
79
+ <param name="expectedSubstring">The sub-string which is expected not to be in the string</param>
80
+ <param name="actualString">The string to be inspected</param>
81
+ <param name="comparisonType">The type of string comparison to perform</param>
82
+ <exception cref="T:Xunit.Sdk.DoesNotContainException">Thrown when the sub-string is present inside the given string</exception>
83
+ </member>
84
+ <member name="M:Xunit.Extensions.Assertions.DoesNotThrow(Xunit.Assert.ThrowsDelegate)">
85
+ <summary>
86
+ Verifies that a block of code does not throw any exceptions.
87
+ </summary>
88
+ <param name="testCode">A delegate to the code to be tested</param>
89
+ </member>
90
+ <member name="M:Xunit.Extensions.Assertions.Empty(System.Collections.IEnumerable)">
91
+ <summary>
92
+ Verifies that a collection is empty.
93
+ </summary>
94
+ <param name="collection">The collection to be inspected</param>
95
+ <exception cref="T:System.ArgumentNullException">Thrown when the collection is null</exception>
96
+ <exception cref="T:Xunit.Sdk.EmptyException">Thrown when the collection is not empty</exception>
97
+ </member>
98
+ <member name="M:Xunit.Extensions.Assertions.Equal``1(``0,``0)">
99
+ <summary>
100
+ Verifies that two objects are equal, using a default comparer.
101
+ </summary>
102
+ <typeparam name="T">The type of the objects to be compared</typeparam>
103
+ <param name="expected">The expected value</param>
104
+ <param name="actual">The value to be compared against</param>
105
+ <exception cref="T:Xunit.Sdk.EqualException">Thrown when the objects are not equal</exception>
106
+ </member>
107
+ <member name="M:Xunit.Extensions.Assertions.Equal``1(``0,``0,System.Collections.Generic.IEqualityComparer{``0})">
108
+ <summary>
109
+ Verifies that two objects are equal, using a custom equatable comparer.
110
+ </summary>
111
+ <typeparam name="T">The type of the objects to be compared</typeparam>
112
+ <param name="expected">The expected value</param>
113
+ <param name="actual">The value to be compared against</param>
114
+ <param name="comparer">The comparer used to compare the two objects</param>
115
+ <exception cref="T:Xunit.Sdk.EqualException">Thrown when the objects are not equal</exception>
116
+ </member>
117
+ <member name="M:Xunit.Extensions.Assertions.Equal(System.Double,System.Double,System.Int32)">
118
+ <summary>
119
+ Verifies that two <see cref="T:System.Double"/> values are equal, within the number of decimal
120
+ places given by <paramref name="precision"/>.
121
+ </summary>
122
+ <param name="expected">The expected value</param>
123
+ <param name="actual">The value to be compared against</param>
124
+ <param name="precision">The number of decimal places (valid values: 0-15)</param>
125
+ <exception cref="T:Xunit.Sdk.EqualException">Thrown when the values are not equal</exception>
126
+ </member>
127
+ <member name="M:Xunit.Extensions.Assertions.Equal(System.Decimal,System.Decimal,System.Int32)">
128
+ <summary>
129
+ Verifies that two <see cref="T:System.Decimal"/> values are equal, within the number of decimal
130
+ places given by <paramref name="precision"/>.
131
+ </summary>
132
+ <param name="expected">The expected value</param>
133
+ <param name="actual">The value to be compared against</param>
134
+ <param name="precision">The number of decimal places (valid values: 0-15)</param>
135
+ <exception cref="T:Xunit.Sdk.EqualException">Thrown when the values are not equal</exception>
136
+ </member>
137
+ <member name="M:Xunit.Extensions.Assertions.False(System.Boolean)">
138
+ <summary>
139
+ Verifies that the condition is false.
140
+ </summary>
141
+ <param name="condition">The condition to be tested</param>
142
+ <exception cref="T:Xunit.Sdk.FalseException">Thrown if the condition is not false</exception>
143
+ </member>
144
+ <member name="M:Xunit.Extensions.Assertions.False(System.Boolean,System.String)">
145
+ <summary>
146
+ Verifies that the condition is false.
147
+ </summary>
148
+ <param name="condition">The condition to be tested</param>
149
+ <param name="userMessage">The message to show when the condition is not false</param>
150
+ <exception cref="T:Xunit.Sdk.FalseException">Thrown if the condition is not false</exception>
151
+ </member>
152
+ <member name="M:Xunit.Extensions.Assertions.InRange``1(``0,``0,``0)">
153
+ <summary>
154
+ Verifies that a value is within a given range.
155
+ </summary>
156
+ <typeparam name="T">The type of the value to be compared</typeparam>
157
+ <param name="actual">The actual value to be evaluated</param>
158
+ <param name="low">The (inclusive) low value of the range</param>
159
+ <param name="high">The (inclusive) high value of the range</param>
160
+ <exception cref="T:Xunit.Sdk.InRangeException">Thrown when the value is not in the given range</exception>
161
+ </member>
162
+ <member name="M:Xunit.Extensions.Assertions.InRange``1(``0,``0,``0,System.Collections.Generic.IComparer{``0})">
163
+ <summary>
164
+ Verifies that a value is within a given range, using a comparer.
165
+ </summary>
166
+ <typeparam name="T">The type of the value to be compared</typeparam>
167
+ <param name="actual">The actual value to be evaluated</param>
168
+ <param name="low">The (inclusive) low value of the range</param>
169
+ <param name="high">The (inclusive) high value of the range</param>
170
+ <param name="comparer">The comparer used to evaluate the value's range</param>
171
+ <exception cref="T:Xunit.Sdk.InRangeException">Thrown when the value is not in the given range</exception>
172
+ </member>
173
+ <member name="M:Xunit.Extensions.Assertions.IsAssignableFrom``1(System.Object)">
174
+ <summary>
175
+ Verifies that an object is of the given type or a derived type.
176
+ </summary>
177
+ <typeparam name="T">The type the object should be</typeparam>
178
+ <param name="object">The object to be evaluated</param>
179
+ <returns>The object, casted to type T when successful</returns>
180
+ <exception cref="T:Xunit.Sdk.IsAssignableFromException">Thrown when the object is not the given type</exception>
181
+ </member>
182
+ <member name="M:Xunit.Extensions.Assertions.IsAssignableFrom(System.Type,System.Object)">
183
+ <summary>
184
+ Verifies that an object is of the given type or a derived type.
185
+ </summary>
186
+ <param name="expectedType">The type the object should be</param>
187
+ <param name="object">The object to be evaluated</param>
188
+ <exception cref="T:Xunit.Sdk.IsAssignableFromException">Thrown when the object is not the given type</exception>
189
+ </member>
190
+ <member name="M:Xunit.Extensions.Assertions.IsNotType``1(System.Object)">
191
+ <summary>
192
+ Verifies that an object is not exactly the given type.
193
+ </summary>
194
+ <typeparam name="T">The type the object should not be</typeparam>
195
+ <param name="object">The object to be evaluated</param>
196
+ <exception cref="T:Xunit.Sdk.IsNotTypeException">Thrown when the object is the given type</exception>
197
+ </member>
198
+ <member name="M:Xunit.Extensions.Assertions.IsNotType(System.Type,System.Object)">
199
+ <summary>
200
+ Verifies that an object is not exactly the given type.
201
+ </summary>
202
+ <param name="expectedType">The type the object should not be</param>
203
+ <param name="object">The object to be evaluated</param>
204
+ <exception cref="T:Xunit.Sdk.IsNotTypeException">Thrown when the object is the given type</exception>
205
+ </member>
206
+ <member name="M:Xunit.Extensions.Assertions.IsType``1(System.Object)">
207
+ <summary>
208
+ Verifies that an object is exactly the given type (and not a derived type).
209
+ </summary>
210
+ <typeparam name="T">The type the object should be</typeparam>
211
+ <param name="object">The object to be evaluated</param>
212
+ <returns>The object, casted to type T when successful</returns>
213
+ <exception cref="T:Xunit.Sdk.IsTypeException">Thrown when the object is not the given type</exception>
214
+ </member>
215
+ <member name="M:Xunit.Extensions.Assertions.IsType(System.Type,System.Object)">
216
+ <summary>
217
+ Verifies that an object is exactly the given type (and not a derived type).
218
+ </summary>
219
+ <param name="expectedType">The type the object should be</param>
220
+ <param name="object">The object to be evaluated</param>
221
+ <exception cref="T:Xunit.Sdk.IsTypeException">Thrown when the object is not the given type</exception>
222
+ </member>
223
+ <member name="M:Xunit.Extensions.Assertions.NotEmpty(System.Collections.IEnumerable)">
224
+ <summary>
225
+ Verifies that a collection is not empty.
226
+ </summary>
227
+ <param name="collection">The collection to be inspected</param>
228
+ <exception cref="T:System.ArgumentNullException">Thrown when a null collection is passed</exception>
229
+ <exception cref="T:Xunit.Sdk.NotEmptyException">Thrown when the collection is empty</exception>
230
+ </member>
231
+ <member name="M:Xunit.Extensions.Assertions.NotEqual``1(``0,``0)">
232
+ <summary>
233
+ Verifies that two objects are not equal, using a default comparer.
234
+ </summary>
235
+ <typeparam name="T">The type of the objects to be compared</typeparam>
236
+ <param name="expected">The expected object</param>
237
+ <param name="actual">The actual object</param>
238
+ <exception cref="T:Xunit.Sdk.NotEqualException">Thrown when the objects are equal</exception>
239
+ </member>
240
+ <member name="M:Xunit.Extensions.Assertions.NotEqual``1(``0,``0,System.Collections.Generic.IEqualityComparer{``0})">
241
+ <summary>
242
+ Verifies that two objects are not equal, using a custom equality comparer.
243
+ </summary>
244
+ <typeparam name="T">The type of the objects to be compared</typeparam>
245
+ <param name="expected">The expected object</param>
246
+ <param name="actual">The actual object</param>
247
+ <param name="comparer">The comparer used to examine the objects</param>
248
+ <exception cref="T:Xunit.Sdk.NotEqualException">Thrown when the objects are equal</exception>
249
+ </member>
250
+ <member name="M:Xunit.Extensions.Assertions.NotInRange``1(``0,``0,``0)">
251
+ <summary>
252
+ Verifies that a value is not within a given range, using the default comparer.
253
+ </summary>
254
+ <typeparam name="T">The type of the value to be compared</typeparam>
255
+ <param name="actual">The actual value to be evaluated</param>
256
+ <param name="low">The (inclusive) low value of the range</param>
257
+ <param name="high">The (inclusive) high value of the range</param>
258
+ <exception cref="T:Xunit.Sdk.NotInRangeException">Thrown when the value is in the given range</exception>
259
+ </member>
260
+ <member name="M:Xunit.Extensions.Assertions.NotInRange``1(``0,``0,``0,System.Collections.Generic.IComparer{``0})">
261
+ <summary>
262
+ Verifies that a value is not within a given range, using a comparer.
263
+ </summary>
264
+ <typeparam name="T">The type of the value to be compared</typeparam>
265
+ <param name="actual">The actual value to be evaluated</param>
266
+ <param name="low">The (inclusive) low value of the range</param>
267
+ <param name="high">The (inclusive) high value of the range</param>
268
+ <param name="comparer">The comparer used to evaluate the value's range</param>
269
+ <exception cref="T:Xunit.Sdk.NotInRangeException">Thrown when the value is in the given range</exception>
270
+ </member>
271
+ <member name="M:Xunit.Extensions.Assertions.NotNull(System.Object)">
272
+ <summary>
273
+ Verifies that an object reference is not null.
274
+ </summary>
275
+ <param name="object">The object to be validated</param>
276
+ <exception cref="T:Xunit.Sdk.NotNullException">Thrown when the object is not null</exception>
277
+ </member>
278
+ <member name="M:Xunit.Extensions.Assertions.NotSame(System.Object,System.Object)">
279
+ <summary>
280
+ Verifies that two objects are not the same instance.
281
+ </summary>
282
+ <param name="expected">The expected object instance</param>
283
+ <param name="actual">The actual object instance</param>
284
+ <exception cref="T:Xunit.Sdk.NotSameException">Thrown when the objects are the same instance</exception>
285
+ </member>
286
+ <member name="M:Xunit.Extensions.Assertions.Null(System.Object)">
287
+ <summary>
288
+ Verifies that an object reference is null.
289
+ </summary>
290
+ <param name="object">The object to be inspected</param>
291
+ <exception cref="T:Xunit.Sdk.NullException">Thrown when the object reference is not null</exception>
292
+ </member>
293
+ <member name="M:Xunit.Extensions.Assertions.Same(System.Object,System.Object)">
294
+ <summary>
295
+ Verifies that two objects are the same instance.
296
+ </summary>
297
+ <param name="expected">The expected object instance</param>
298
+ <param name="actual">The actual object instance</param>
299
+ <exception cref="T:Xunit.Sdk.SameException">Thrown when the objects are not the same instance</exception>
300
+ </member>
301
+ <member name="M:Xunit.Extensions.Assertions.Single(System.Collections.IEnumerable)">
302
+ <summary>
303
+ Verifies that the given collection contains only a single
304
+ element of the given type.
305
+ </summary>
306
+ <param name="collection">The collection.</param>
307
+ <returns>The single item in the collection.</returns>
308
+ <exception cref="T:Xunit.Sdk.SingleException">Thrown when the collection does not contain
309
+ exactly one element.</exception>
310
+ </member>
311
+ <member name="M:Xunit.Extensions.Assertions.Single``1(System.Collections.Generic.IEnumerable{``0})">
312
+ <summary>
313
+ Verifies that the given collection contains only a single
314
+ element of the given type.
315
+ </summary>
316
+ <typeparam name="T">The collection type.</typeparam>
317
+ <param name="collection">The collection.</param>
318
+ <returns>The single item in the collection.</returns>
319
+ <exception cref="T:Xunit.Sdk.SingleException">Thrown when the collection does not contain
320
+ exactly one element.</exception>
321
+ </member>
322
+ <member name="M:Xunit.Extensions.Assertions.Throws``1(Xunit.Assert.ThrowsDelegate)">
323
+ <summary>
324
+ Verifies that the exact exception is thrown (and not a derived exception type).
325
+ </summary>
326
+ <typeparam name="T">The type of the exception expected to be thrown</typeparam>
327
+ <param name="testCode">A delegate to the code to be tested</param>
328
+ <returns>The exception that was thrown, when successful</returns>
329
+ <exception cref="T:Xunit.Sdk.ThrowsException">Thrown when an exception was not thrown, or when an exception of the incorrect type is thrown</exception>
330
+ </member>
331
+ <member name="M:Xunit.Extensions.Assertions.Throws``1(Xunit.Assert.ThrowsDelegateWithReturn)">
332
+ <summary>
333
+ Verifies that the exact exception is thrown (and not a derived exception type).
334
+ Generally used to test property accessors.
335
+ </summary>
336
+ <typeparam name="T">The type of the exception expected to be thrown</typeparam>
337
+ <param name="testCode">A delegate to the code to be tested</param>
338
+ <returns>The exception that was thrown, when successful</returns>
339
+ <exception cref="T:Xunit.Sdk.ThrowsException">Thrown when an exception was not thrown, or when an exception of the incorrect type is thrown</exception>
340
+ </member>
341
+ <member name="M:Xunit.Extensions.Assertions.Throws(System.Type,Xunit.Assert.ThrowsDelegate)">
342
+ <summary>
343
+ Verifies that the exact exception is thrown (and not a derived exception type).
344
+ </summary>
345
+ <param name="exceptionType">The type of the exception expected to be thrown</param>
346
+ <param name="testCode">A delegate to the code to be tested</param>
347
+ <returns>The exception that was thrown, when successful</returns>
348
+ <exception cref="T:Xunit.Sdk.ThrowsException">Thrown when an exception was not thrown, or when an exception of the incorrect type is thrown</exception>
349
+ </member>
350
+ <member name="M:Xunit.Extensions.Assertions.Throws(System.Type,Xunit.Assert.ThrowsDelegateWithReturn)">
351
+ <summary>
352
+ Verifies that the exact exception is thrown (and not a derived exception type).
353
+ Generally used to test property accessors.
354
+ </summary>
355
+ <param name="exceptionType">The type of the exception expected to be thrown</param>
356
+ <param name="testCode">A delegate to the code to be tested</param>
357
+ <returns>The exception that was thrown, when successful</returns>
358
+ <exception cref="T:Xunit.Sdk.ThrowsException">Thrown when an exception was not thrown, or when an exception of the incorrect type is thrown</exception>
359
+ </member>
360
+ <member name="M:Xunit.Extensions.Assertions.True(System.Boolean)">
361
+ <summary>
362
+ Verifies that an expression is true.
363
+ </summary>
364
+ <param name="condition">The condition to be inspected</param>
365
+ <exception cref="T:Xunit.Sdk.TrueException">Thrown when the condition is false</exception>
366
+ </member>
367
+ <member name="M:Xunit.Extensions.Assertions.True(System.Boolean,System.String)">
368
+ <summary>
369
+ Verifies that an expression is true.
370
+ </summary>
371
+ <param name="condition">The condition to be inspected</param>
372
+ <param name="userMessage">The message to be shown when the condition is false</param>
373
+ <exception cref="T:Xunit.Sdk.TrueException">Thrown when the condition is false</exception>
374
+ </member>
375
+ <member name="T:Xunit.Extensions.TestClass">
376
+ <summary>
377
+ A class which can be derived from for test classes, which bring an overridable version
378
+ of Assert (using the <see cref="T:Xunit.Extensions.Assertions"/> class.
379
+ </summary>
380
+ </member>
381
+ <member name="P:Xunit.Extensions.TestClass.Assert">
382
+ <summary>
383
+ Gets a class which provides assertions.
384
+ </summary>
385
+ </member>
386
+ <member name="T:Xunit.Extensions.AssumeIdentityAttribute">
387
+ <summary>
388
+ Apply this attribute to your test method to replace the
389
+ <see cref="P:System.Threading.Thread.CurrentPrincipal"/> with another role.
390
+ </summary>
391
+ </member>
392
+ <member name="M:Xunit.Extensions.AssumeIdentityAttribute.#ctor(System.String)">
393
+ <summary>
394
+ Replaces the identity of the current thread with <paramref name="name"/>.
395
+ </summary>
396
+ <param name="name">The role's name</param>
397
+ </member>
398
+ <member name="M:Xunit.Extensions.AssumeIdentityAttribute.After(System.Reflection.MethodInfo)">
399
+ <summary>
400
+ Restores the original <see cref="P:System.Threading.Thread.CurrentPrincipal"/>.
401
+ </summary>
402
+ <param name="methodUnderTest">The method under test</param>
403
+ </member>
404
+ <member name="M:Xunit.Extensions.AssumeIdentityAttribute.Before(System.Reflection.MethodInfo)">
405
+ <summary>
406
+ Stores the current <see cref="P:System.Threading.Thread.CurrentPrincipal"/> and replaces it with
407
+ a new role identified in constructor.
408
+ </summary>
409
+ <param name="methodUnderTest">The method under test</param>
410
+ </member>
411
+ <member name="P:Xunit.Extensions.AssumeIdentityAttribute.Name">
412
+ <summary>
413
+ Gets the name.
414
+ </summary>
415
+ </member>
416
+ <member name="T:Xunit.Extensions.AutoRollbackAttribute">
417
+ <summary>
418
+ Apply this attribute to your test method to automatically create a
419
+ <see cref="T:System.Transactions.TransactionScope"/> that is rolled back when the test is
420
+ finished.
421
+ </summary>
422
+ </member>
423
+ <member name="M:Xunit.Extensions.AutoRollbackAttribute.After(System.Reflection.MethodInfo)">
424
+ <summary>
425
+ Rolls back the transaction.
426
+ </summary>
427
+ </member>
428
+ <member name="M:Xunit.Extensions.AutoRollbackAttribute.Before(System.Reflection.MethodInfo)">
429
+ <summary>
430
+ Creates the transaction.
431
+ </summary>
432
+ </member>
433
+ <member name="P:Xunit.Extensions.AutoRollbackAttribute.IsolationLevel">
434
+ <summary>
435
+ Gets or sets the isolation level of the transaction.
436
+ Default value is <see cref="P:Xunit.Extensions.AutoRollbackAttribute.IsolationLevel"/>.Unspecified.
437
+ </summary>
438
+ </member>
439
+ <member name="P:Xunit.Extensions.AutoRollbackAttribute.ScopeOption">
440
+ <summary>
441
+ Gets or sets the scope option for the transaction.
442
+ Default value is <see cref="T:System.Transactions.TransactionScopeOption"/>.Required.
443
+ </summary>
444
+ </member>
445
+ <member name="P:Xunit.Extensions.AutoRollbackAttribute.TimeoutInMS">
446
+ <summary>
447
+ Gets or sets the timeout of the transaction, in milliseconds.
448
+ By default, the transaction will not timeout.
449
+ </summary>
450
+ </member>
451
+ <member name="T:Xunit.Extensions.ClassDataAttribute">
452
+ <summary>
453
+ Provides a data source for a data theory, with the data coming from a class
454
+ which must implement IEnumerable&lt;object[]&gt;.
455
+ </summary>
456
+ </member>
457
+ <member name="T:Xunit.Extensions.DataAttribute">
458
+ <summary>
459
+ Abstract attribute which represents a data source for a data theory.
460
+ Data source providers derive from this attribute and implement GetData
461
+ to return the data for the theory.
462
+ </summary>
463
+ </member>
464
+ <member name="M:Xunit.Extensions.DataAttribute.GetData(System.Reflection.MethodInfo,System.Type[])">
465
+ <summary>
466
+ Returns the data to be used to test the theory.
467
+ </summary>
468
+ <remarks>
469
+ The <paramref name="parameterTypes"/> parameter is provided so that the
470
+ test data can be converted to the destination parameter type when necessary.
471
+ Generally, data should NOT be automatically converted, UNLESS the source data
472
+ format does not have rich types (for example, all numbers in Excel spreadsheets
473
+ are returned as <see cref="T:System.Double"/> even if they are integers). Derivers of
474
+ this class should NOT throw exceptions for mismatched types or mismatched number
475
+ of parameters; the test framework will throw these exceptions at the correct
476
+ time.
477
+ </remarks>
478
+ <param name="methodUnderTest">The method that is being tested</param>
479
+ <param name="parameterTypes">The types of the parameters for the test method</param>
480
+ <returns>The theory data</returns>
481
+ </member>
482
+ <member name="P:Xunit.Extensions.DataAttribute.TypeId">
483
+ <inheritdoc/>
484
+ </member>
485
+ <member name="M:Xunit.Extensions.ClassDataAttribute.#ctor(System.Type)">
486
+ <summary>
487
+ Initializes a new instance of the <see cref="T:Xunit.Extensions.ClassDataAttribute"/> class.
488
+ </summary>
489
+ <param name="class">The class that provides the data.</param>
490
+ </member>
491
+ <member name="M:Xunit.Extensions.ClassDataAttribute.GetData(System.Reflection.MethodInfo,System.Type[])">
492
+ <inheritdoc/>
493
+ </member>
494
+ <member name="P:Xunit.Extensions.ClassDataAttribute.Class">
495
+ <summary>
496
+ Gets the type of the class that provides the data.
497
+ </summary>
498
+ </member>
499
+ <member name="T:Xunit.Extensions.DataAdapterDataAttribute">
500
+ <summary>
501
+ Represents an implementation of <see cref="T:Xunit.Extensions.DataAttribute"/> which uses an
502
+ instance of <see cref="T:System.Data.IDataAdapter"/> to get the data for a <see cref="T:Xunit.Extensions.TheoryAttribute"/>
503
+ decorated test method.
504
+ </summary>
505
+ </member>
506
+ <member name="M:Xunit.Extensions.DataAdapterDataAttribute.GetData(System.Reflection.MethodInfo,System.Type[])">
507
+ <inheritdoc/>
508
+ </member>
509
+ <member name="M:Xunit.Extensions.DataAdapterDataAttribute.ConvertParameter(System.Object,System.Type)">
510
+ <summary>
511
+ Converts a parameter to its destination parameter type, if necessary.
512
+ </summary>
513
+ <param name="parameter">The parameter value</param>
514
+ <param name="parameterType">The destination parameter type (null if not known)</param>
515
+ <returns>The converted parameter value</returns>
516
+ </member>
517
+ <member name="P:Xunit.Extensions.DataAdapterDataAttribute.DataAdapter">
518
+ <summary>
519
+ Gets the data adapter to be used to retrieve the test data.
520
+ </summary>
521
+ </member>
522
+ <member name="T:Xunit.Extensions.InlineDataAttribute">
523
+ <summary>
524
+ Provides a data source for a data theory, with the data coming from inline values.
525
+ </summary>
526
+ </member>
527
+ <member name="M:Xunit.Extensions.InlineDataAttribute.#ctor(System.Object[])">
528
+ <summary>
529
+ Initializes a new instance of the <see cref="T:Xunit.Extensions.InlineDataAttribute"/> class.
530
+ </summary>
531
+ <param name="dataValues">The data values to pass to the theory</param>
532
+ </member>
533
+ <member name="M:Xunit.Extensions.InlineDataAttribute.GetData(System.Reflection.MethodInfo,System.Type[])">
534
+ <summary>
535
+ Returns the data to be used to test the theory.
536
+ </summary>
537
+ <param name="methodUnderTest">The method that is being tested</param>
538
+ <param name="parameterTypes">The types of the parameters for the test method</param>
539
+ <returns>The theory data, in table form</returns>
540
+ </member>
541
+ <member name="P:Xunit.Extensions.InlineDataAttribute.DataValues">
542
+ <summary>
543
+ Gets the data values.
544
+ </summary>
545
+ </member>
546
+ <member name="T:Xunit.Extensions.OleDbDataAttribute">
547
+ <summary>
548
+ Provides a data source for a data theory, with the data coming from an OLEDB connection.
549
+ </summary>
550
+ </member>
551
+ <member name="M:Xunit.Extensions.OleDbDataAttribute.#ctor(System.String,System.String)">
552
+ <summary>
553
+ Creates a new instance of <see cref="T:Xunit.Extensions.OleDbDataAttribute"/>.
554
+ </summary>
555
+ <param name="connectionString">The OLEDB connection string to the data</param>
556
+ <param name="selectStatement">The SELECT statement used to return the data for the theory</param>
557
+ </member>
558
+ <member name="P:Xunit.Extensions.OleDbDataAttribute.ConnectionString">
559
+ <summary>
560
+ Gets the connection string.
561
+ </summary>
562
+ </member>
563
+ <member name="P:Xunit.Extensions.OleDbDataAttribute.SelectStatement">
564
+ <summary>
565
+ Gets the select statement.
566
+ </summary>
567
+ </member>
568
+ <member name="P:Xunit.Extensions.OleDbDataAttribute.DataAdapter">
569
+ <inheritdoc/>
570
+ </member>
571
+ <member name="T:Xunit.Extensions.PropertyDataAttribute">
572
+ <summary>
573
+ Provides a data source for a data theory, with the data coming from a public static property on the test class.
574
+ The property must return IEnumerable&lt;object[]&gt; with the test data.
575
+ </summary>
576
+ </member>
577
+ <member name="M:Xunit.Extensions.PropertyDataAttribute.#ctor(System.String)">
578
+ <summary>
579
+ Creates a new instance of <see cref="T:Xunit.Extensions.PropertyDataAttribute"/>/
580
+ </summary>
581
+ <param name="propertyName">The name of the public static property on the test class that will provide the test data</param>
582
+ </member>
583
+ <member name="M:Xunit.Extensions.PropertyDataAttribute.GetData(System.Reflection.MethodInfo,System.Type[])">
584
+ <summary>
585
+ Returns the data to be used to test the theory.
586
+ </summary>
587
+ <param name="methodUnderTest">The method that is being tested</param>
588
+ <param name="parameterTypes">The types of the parameters for the test method</param>
589
+ <returns>The theory data, in table form</returns>
590
+ </member>
591
+ <member name="P:Xunit.Extensions.PropertyDataAttribute.PropertyName">
592
+ <summary>
593
+ Gets the property name.
594
+ </summary>
595
+ </member>
596
+ <member name="T:Xunit.Extensions.SqlServerDataAttribute">
597
+ <summary>
598
+ Provides a data source for a data theory, with the data coming a Microsoft SQL Server.
599
+ </summary>
600
+ </member>
601
+ <member name="M:Xunit.Extensions.SqlServerDataAttribute.#ctor(System.String,System.String,System.String)">
602
+ <summary>
603
+ Creates a new instance of <see cref="T:Xunit.Extensions.SqlServerDataAttribute"/>, using a trusted connection.
604
+ </summary>
605
+ <param name="serverName">The server name of the Microsoft SQL Server</param>
606
+ <param name="databaseName">The database name</param>
607
+ <param name="selectStatement">The SQL SELECT statement to return the data for the data theory</param>
608
+ </member>
609
+ <member name="M:Xunit.Extensions.SqlServerDataAttribute.#ctor(System.String,System.String,System.String,System.String,System.String)">
610
+ <summary>
611
+ Creates a new instance of <see cref="T:Xunit.Extensions.SqlServerDataAttribute"/>, using the provided username and password.
612
+ </summary>
613
+ <param name="serverName">The server name of the Microsoft SQL Server</param>
614
+ <param name="databaseName">The database name</param>
615
+ <param name="username">The username for the server</param>
616
+ <param name="password">The password for the server</param>
617
+ <param name="selectStatement">The SQL SELECT statement to return the data for the data theory</param>
618
+ </member>
619
+ <member name="T:Xunit.Extensions.ExcelDataAttribute">
620
+ <summary>
621
+ Provides a data source for a data theory, with the data coming a Microsoft Excel (.xls) spreadsheet.
622
+ </summary>
623
+ </member>
624
+ <member name="M:Xunit.Extensions.ExcelDataAttribute.#ctor(System.String,System.String)">
625
+ <summary>
626
+ Creates a new instance of <see cref="T:Xunit.Extensions.ExcelDataAttribute"/>.
627
+ </summary>
628
+ <param name="filename">The filename of the XLS spreadsheet file; if the filename provided
629
+ is relative, then it is relative to the location of xunit.extensions.dll.</param>
630
+ <param name="selectStatement">The SELECT statement that returns the data for the theory</param>
631
+ </member>
632
+ <member name="M:Xunit.Extensions.ExcelDataAttribute.ConvertParameter(System.Object,System.Type)">
633
+ <inheritdoc/>
634
+ </member>
635
+ <member name="T:Xunit.Extensions.Clock">
636
+ <summary>
637
+ A wrapper around the static operations on <see cref="T:System.DateTime"/> which allows time
638
+ to be frozen using the <see cref="T:Xunit.Extensions.FreezeClockAttribute"/>. The clock begins in the
639
+ thawed state; that is, calls to <see cref="P:Xunit.Extensions.Clock.Now"/>, <see cref="P:Xunit.Extensions.Clock.Today"/>, and
640
+ <see cref="P:Xunit.Extensions.Clock.UtcNow"/> return current (non-frozen) values.
641
+ </summary>
642
+ </member>
643
+ <member name="M:Xunit.Extensions.Clock.Freeze">
644
+ <summary>
645
+ Freezes the clock with the current time.
646
+ Until <see cref="M:Xunit.Extensions.Clock.Thaw"/> is called, all calls to <see cref="P:Xunit.Extensions.Clock.Now"/>, <see cref="P:Xunit.Extensions.Clock.Today"/>, and
647
+ <see cref="P:Xunit.Extensions.Clock.UtcNow"/> will return the exact same values.
648
+ </summary>
649
+ </member>
650
+ <member name="M:Xunit.Extensions.Clock.FreezeLocal(System.DateTime)">
651
+ <summary>
652
+ Freezes the clock with the given date and time, considered to be local time.
653
+ Until <see cref="M:Xunit.Extensions.Clock.Thaw"/> is called, all calls to <see cref="P:Xunit.Extensions.Clock.Now"/>, <see cref="P:Xunit.Extensions.Clock.Today"/>, and
654
+ <see cref="P:Xunit.Extensions.Clock.UtcNow"/> will return the exact same values.
655
+ </summary>
656
+ <param name="localDateTime">The local date and time to freeze to</param>
657
+ </member>
658
+ <member name="M:Xunit.Extensions.Clock.FreezeUtc(System.DateTime)">
659
+ <summary>
660
+ Freezes the clock with the given date and time, considered to be Coordinated Universal Time (UTC).
661
+ Until <see cref="M:Xunit.Extensions.Clock.Thaw"/> is called, all calls to <see cref="P:Xunit.Extensions.Clock.Now"/>, <see cref="P:Xunit.Extensions.Clock.Today"/>, and
662
+ <see cref="P:Xunit.Extensions.Clock.UtcNow"/> will return the exact same values.
663
+ </summary>
664
+ <param name="utcDateTime">The UTC date and time to freeze to</param>
665
+ </member>
666
+ <member name="M:Xunit.Extensions.Clock.Thaw">
667
+ <summary>
668
+ Thaws the clock so that <see cref="P:Xunit.Extensions.Clock.Now"/>, <see cref="P:Xunit.Extensions.Clock.Today"/>, and <see cref="P:Xunit.Extensions.Clock.UtcNow"/>
669
+ return normal values.
670
+ </summary>
671
+ </member>
672
+ <member name="P:Xunit.Extensions.Clock.Now">
673
+ <summary>
674
+ Gets a <see cref="T:System.DateTime"/> object that is set to the current date and time on this computer,
675
+ expressed as the local time.
676
+ </summary>
677
+ </member>
678
+ <member name="P:Xunit.Extensions.Clock.Today">
679
+ <summary>
680
+ Gets the current date.
681
+ </summary>
682
+ </member>
683
+ <member name="P:Xunit.Extensions.Clock.UtcNow">
684
+ <summary>
685
+ Gets a <see cref="T:System.DateTime"/> object that is set to the current date and time on this computer,
686
+ expressed as the Coordinated Universal Time (UTC).
687
+ </summary>
688
+ </member>
689
+ <member name="T:Xunit.Extensions.FreezeClockAttribute">
690
+ <summary>
691
+ Apply this attribute to your test method to freeze the time represented by the
692
+ <see cref="T:Xunit.Extensions.Clock"/> class.
693
+ </summary>
694
+ </member>
695
+ <member name="M:Xunit.Extensions.FreezeClockAttribute.#ctor">
696
+ <summary>
697
+ Freeze the clock with the current date and time.
698
+ </summary>
699
+ </member>
700
+ <member name="M:Xunit.Extensions.FreezeClockAttribute.#ctor(System.Int32,System.Int32,System.Int32)">
701
+ <summary>
702
+ Freeze the clock with the given date, considered to be local time.
703
+ </summary>
704
+ <param name="year">The frozen year</param>
705
+ <param name="month">The frozen month</param>
706
+ <param name="day">The frozen day</param>
707
+ </member>
708
+ <member name="M:Xunit.Extensions.FreezeClockAttribute.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
709
+ <summary>
710
+ Freeze the clock with the given date and time, considered to be in local time.
711
+ </summary>
712
+ <param name="year">The frozen year</param>
713
+ <param name="month">The frozen month</param>
714
+ <param name="day">The frozen day</param>
715
+ <param name="hour">The frozen hour</param>
716
+ <param name="minute">The frozen minute</param>
717
+ <param name="second">The frozen second</param>
718
+ </member>
719
+ <member name="M:Xunit.Extensions.FreezeClockAttribute.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.DateTimeKind)">
720
+ <summary>
721
+ Freeze the clock with the given date and time, with the given kind of time.
722
+ </summary>
723
+ <param name="year">The frozen year</param>
724
+ <param name="month">The frozen month</param>
725
+ <param name="day">The frozen day</param>
726
+ <param name="hour">The frozen hour</param>
727
+ <param name="minute">The frozen minute</param>
728
+ <param name="second">The frozen second</param>
729
+ <param name="kind">The frozen time kind</param>
730
+ </member>
731
+ <member name="M:Xunit.Extensions.FreezeClockAttribute.After(System.Reflection.MethodInfo)">
732
+ <summary>
733
+ Thaws the clock.
734
+ </summary>
735
+ <param name="methodUnderTest">The method under test</param>
736
+ </member>
737
+ <member name="M:Xunit.Extensions.FreezeClockAttribute.Before(System.Reflection.MethodInfo)">
738
+ <summary>
739
+ Freezes the clock.
740
+ </summary>
741
+ <param name="methodUnderTest">The method under test</param>
742
+ </member>
743
+ <member name="T:Xunit.Extensions.TheoryAttribute">
744
+ <summary>
745
+ Marks a test method as being a data theory. Data theories are tests which are fed
746
+ various bits of data from a data source, mapping to parameters on the test method.
747
+ If the data source contains multiple rows, then the test method is executed
748
+ multiple times (once with each data row).
749
+ </summary>
750
+ </member>
751
+ <member name="M:Xunit.Extensions.TheoryAttribute.EnumerateTestCommands(Xunit.Sdk.IMethodInfo)">
752
+ <summary>
753
+ Creates instances of <see cref="T:Xunit.Extensions.TheoryCommand"/> which represent individual intended
754
+ invocations of the test method, one per data row in the data source.
755
+ </summary>
756
+ <param name="method">The method under test</param>
757
+ <returns>An enumerator through the desired test method invocations</returns>
758
+ </member>
759
+ <member name="T:Xunit.Extensions.TheoryCommand">
760
+ <summary>
761
+ Represents a single invocation of a data theory test method.
762
+ </summary>
763
+ </member>
764
+ <member name="M:Xunit.Extensions.TheoryCommand.#ctor(Xunit.Sdk.IMethodInfo,System.Object[])">
765
+ <summary>
766
+ Creates a new instance of <see cref="T:Xunit.Extensions.TheoryCommand"/>.
767
+ </summary>
768
+ <param name="testMethod">The method under test</param>
769
+ <param name="parameters">The parameters to be passed to the test method</param>
770
+ </member>
771
+ <member name="M:Xunit.Extensions.TheoryCommand.#ctor(Xunit.Sdk.IMethodInfo,System.Object[],System.Type[])">
772
+ <summary>
773
+ Creates a new instance of <see cref="T:Xunit.Extensions.TheoryCommand"/> based on a generic theory.
774
+ </summary>
775
+ <param name="testMethod">The method under test</param>
776
+ <param name="parameters">The parameters to be passed to the test method</param>
777
+ <param name="genericTypes">The generic types that were used to resolved the generic method.</param>
778
+ </member>
779
+ <member name="M:Xunit.Extensions.TheoryCommand.Execute(System.Object)">
780
+ <inheritdoc/>
781
+ </member>
782
+ <member name="P:Xunit.Extensions.TheoryCommand.Parameters">
783
+ <summary>
784
+ Gets the parameter values that are passed to the test method.
785
+ </summary>
786
+ </member>
787
+ <member name="T:Xunit.Extensions.TraceAttribute">
788
+ <summary>
789
+ Apply to a test method to trace the method begin and end.
790
+ </summary>
791
+ </member>
792
+ <member name="M:Xunit.Extensions.TraceAttribute.Before(System.Reflection.MethodInfo)">
793
+ <summary>
794
+ This method is called before the test method is executed.
795
+ </summary>
796
+ <param name="methodUnderTest">The method under test</param>
797
+ </member>
798
+ <member name="M:Xunit.Extensions.TraceAttribute.After(System.Reflection.MethodInfo)">
799
+ <summary>
800
+ This method is called after the test method is executed.
801
+ </summary>
802
+ <param name="methodUnderTest">The method under test</param>
803
+ </member>
804
+ </members>
805
+ </doc>