albacore 0.3.6 → 0.6.2.rc1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (643) hide show
  1. data/.gitignore +3 -22
  2. data/.travis.yml +13 -15
  3. data/Gemfile +14 -13
  4. data/Guardfile +7 -0
  5. data/README.md +148 -0
  6. data/Rakefile +9 -25
  7. data/albacore.gemspec +20 -5
  8. data/lib/albacore.rb +3 -9
  9. data/lib/albacore/albacore_module.rb +53 -0
  10. data/lib/albacore/application.rb +32 -0
  11. data/lib/albacore/asmver.rb +67 -0
  12. data/lib/albacore/asmver/cpp.rb +20 -0
  13. data/lib/albacore/asmver/cs.rb +17 -0
  14. data/lib/albacore/asmver/engine.rb +43 -0
  15. data/lib/albacore/asmver/fs.rb +25 -0
  16. data/lib/albacore/asmver/vb.rb +17 -0
  17. data/lib/albacore/build.rb +203 -0
  18. data/lib/albacore/cmd_config.rb +55 -0
  19. data/lib/albacore/cross_platform_cmd.rb +177 -0
  20. data/lib/albacore/dsl.rb +118 -0
  21. data/lib/albacore/errors/unfilled_property_error.rb +14 -0
  22. data/lib/albacore/ext/README.md +12 -0
  23. data/lib/albacore/ext/teamcity.rb +64 -0
  24. data/lib/albacore/facts.rb +25 -0
  25. data/lib/albacore/logging.rb +29 -0
  26. data/lib/albacore/migrate.rb +175 -0
  27. data/lib/albacore/nugets_authentication.rb +9 -0
  28. data/lib/albacore/nugets_pack.rb +283 -0
  29. data/lib/albacore/nugets_restore.rb +131 -0
  30. data/lib/albacore/paths.rb +30 -0
  31. data/lib/albacore/project.rb +104 -0
  32. data/lib/albacore/restore_hint_paths.rb +112 -0
  33. data/lib/albacore/semver.rb +5 -0
  34. data/lib/albacore/tasks/README.md +16 -0
  35. data/lib/albacore/tasks/albasemver.rb +49 -0
  36. data/lib/albacore/tasks/projectlint.rb +81 -0
  37. data/lib/albacore/tasks/versionizer.rb +65 -0
  38. data/lib/albacore/test_runner.rb +39 -0
  39. data/lib/albacore/version.rb +3 -0
  40. data/spec/Rakefile +5 -0
  41. data/spec/albacore_spec.rb +35 -0
  42. data/spec/cross_platform_cmd_spec.rb +77 -0
  43. data/spec/ext_teamcity_spec.rb +71 -0
  44. data/spec/facts_spec.rb +7 -0
  45. data/spec/migrate_spec.rb +80 -0
  46. data/spec/nugets_pack_spec.rb +66 -0
  47. data/spec/nugets_restore_spec.rb +55 -0
  48. data/spec/project_spec.rb +26 -0
  49. data/spec/projectlint/added_but_not_on_filesystem/aproject.csproj +29 -0
  50. data/spec/projectlint/correct/File.cs +1 -0
  51. data/spec/projectlint/correct/Image.txt +1 -0
  52. data/spec/projectlint/correct/MyHeavy.heavy +1 -0
  53. data/spec/projectlint/correct/Schema.xsd +1 -0
  54. data/spec/projectlint/correct/SubFolder/AnotherFile.cs +1 -0
  55. data/spec/projectlint/correct/aproject.csproj +29 -0
  56. data/spec/projectlint/on_filesystem_but_not_added/File.cs +1 -0
  57. data/spec/projectlint/on_filesystem_but_not_added/Image.txt +1 -0
  58. data/spec/projectlint/on_filesystem_but_not_added/aproject.csproj +11 -0
  59. data/spec/projectlint_spec.rb +77 -0
  60. data/spec/sh_interceptor.rb +33 -0
  61. data/spec/smoke_spec.rb +9 -0
  62. data/spec/spec_helper.rb +13 -15
  63. data/spec/testdata/Library1.fs +4 -0
  64. data/spec/testdata/Project.fsproj +58 -0
  65. data/spec/testdata/Project/Project.sln +20 -0
  66. data/spec/testdata/Project/Project.v11.suo +0 -0
  67. data/spec/testdata/example.nuspec +14 -0
  68. data/spec/testdata/packages.config +6 -0
  69. metadata +235 -662
  70. data/.bundle/config +0 -2
  71. data/.rspec +0 -2
  72. data/.rvmrc +0 -1
  73. data/README.markdown +0 -71
  74. data/lib/albacore/albacoretask.rb +0 -50
  75. data/lib/albacore/aspnetcompiler.rb +0 -58
  76. data/lib/albacore/assemblyinfo.rb +0 -172
  77. data/lib/albacore/assemblyinfolanguages/assemblyinfoengine.rb +0 -41
  78. data/lib/albacore/assemblyinfolanguages/cppcliengine.rb +0 -18
  79. data/lib/albacore/assemblyinfolanguages/csharpengine.rb +0 -15
  80. data/lib/albacore/assemblyinfolanguages/fsharpengine.rb +0 -23
  81. data/lib/albacore/assemblyinfolanguages/vbnetengine.rb +0 -15
  82. data/lib/albacore/config/aspnetcompilerconfig.rb +0 -29
  83. data/lib/albacore/config/assemblyinfoconfig.rb +0 -20
  84. data/lib/albacore/config/config.rb +0 -22
  85. data/lib/albacore/config/cscconfig.rb +0 -28
  86. data/lib/albacore/config/docuconfig.rb +0 -23
  87. data/lib/albacore/config/execconfig.rb +0 -15
  88. data/lib/albacore/config/fluentmigratorrunnerconfig.rb +0 -15
  89. data/lib/albacore/config/ilmergeconfig.rb +0 -24
  90. data/lib/albacore/config/msbuildconfig.rb +0 -29
  91. data/lib/albacore/config/msdeployconfig.rb +0 -15
  92. data/lib/albacore/config/mspectestrunnerconfig.rb +0 -15
  93. data/lib/albacore/config/mstesttestrunnerconfig.rb +0 -15
  94. data/lib/albacore/config/nantconfig.rb +0 -15
  95. data/lib/albacore/config/nchurnconfig.rb +0 -15
  96. data/lib/albacore/config/ncoverconsoleconfig.rb +0 -15
  97. data/lib/albacore/config/ncoverreportconfig.rb +0 -15
  98. data/lib/albacore/config/ndependconfig.rb +0 -15
  99. data/lib/albacore/config/netversion.rb +0 -24
  100. data/lib/albacore/config/nugetpackconfig.rb +0 -19
  101. data/lib/albacore/config/nugetpublishconfig.rb +0 -19
  102. data/lib/albacore/config/nugetpushconfig.rb +0 -19
  103. data/lib/albacore/config/nugetupdateconfig.rb +0 -19
  104. data/lib/albacore/config/nunittestrunnerconfig.rb +0 -14
  105. data/lib/albacore/config/specflowreportconfig.rb +0 -24
  106. data/lib/albacore/config/sqlcmdconfig.rb +0 -15
  107. data/lib/albacore/config/unzipconfig.rb +0 -15
  108. data/lib/albacore/config/vssgetconfig.rb +0 -14
  109. data/lib/albacore/config/xbuildconfig.rb +0 -15
  110. data/lib/albacore/config/xunittestrunnerconfig.rb +0 -15
  111. data/lib/albacore/config/zipdirectoryconfig.rb +0 -15
  112. data/lib/albacore/csc.rb +0 -67
  113. data/lib/albacore/docu.rb +0 -41
  114. data/lib/albacore/exec.rb +0 -18
  115. data/lib/albacore/fluentmigratorrunner.rb +0 -51
  116. data/lib/albacore/ilmerge.rb +0 -65
  117. data/lib/albacore/msbuild.rb +0 -78
  118. data/lib/albacore/msdeploy.rb +0 -122
  119. data/lib/albacore/mspectestrunner.rb +0 -50
  120. data/lib/albacore/mstesttestrunner.rb +0 -43
  121. data/lib/albacore/nant.rb +0 -38
  122. data/lib/albacore/nchurn.rb +0 -74
  123. data/lib/albacore/ncoverconsole.rb +0 -68
  124. data/lib/albacore/ncoverreport.rb +0 -62
  125. data/lib/albacore/ncoverreports/assemblyfilter.rb +0 -10
  126. data/lib/albacore/ncoverreports/branchcoverage.rb +0 -10
  127. data/lib/albacore/ncoverreports/classfilter.rb +0 -9
  128. data/lib/albacore/ncoverreports/codecoveragebase.rb +0 -25
  129. data/lib/albacore/ncoverreports/cyclomaticcomplexity.rb +0 -23
  130. data/lib/albacore/ncoverreports/documentfilter.rb +0 -9
  131. data/lib/albacore/ncoverreports/fullcoveragereport.rb +0 -13
  132. data/lib/albacore/ncoverreports/methodcoverage.rb +0 -10
  133. data/lib/albacore/ncoverreports/methodfilter.rb +0 -9
  134. data/lib/albacore/ncoverreports/namespacefilter.rb +0 -9
  135. data/lib/albacore/ncoverreports/reportfilterbase.rb +0 -26
  136. data/lib/albacore/ncoverreports/summaryreport.rb +0 -18
  137. data/lib/albacore/ncoverreports/symbolcoverage.rb +0 -9
  138. data/lib/albacore/ndepend.rb +0 -33
  139. data/lib/albacore/nugetinstall.rb +0 -57
  140. data/lib/albacore/nugetpack.rb +0 -54
  141. data/lib/albacore/nugetpublish.rb +0 -47
  142. data/lib/albacore/nugetpush.rb +0 -46
  143. data/lib/albacore/nugetupdate.rb +0 -51
  144. data/lib/albacore/nunittestrunner.rb +0 -41
  145. data/lib/albacore/nuspec.rb +0 -178
  146. data/lib/albacore/output.rb +0 -103
  147. data/lib/albacore/plink.rb +0 -47
  148. data/lib/albacore/specflowreport.rb +0 -62
  149. data/lib/albacore/sqlcmd.rb +0 -82
  150. data/lib/albacore/support/attrmethods.rb +0 -33
  151. data/lib/albacore/support/createtask.rb +0 -50
  152. data/lib/albacore/support/failure.rb +0 -15
  153. data/lib/albacore/support/logging.rb +0 -38
  154. data/lib/albacore/support/openstruct.rb +0 -13
  155. data/lib/albacore/support/runcommand.rb +0 -45
  156. data/lib/albacore/support/supportlinux.rb +0 -21
  157. data/lib/albacore/support/updateattributes.rb +0 -13
  158. data/lib/albacore/support/yamlconfig.rb +0 -18
  159. data/lib/albacore/unzip.rb +0 -28
  160. data/lib/albacore/vssget.rb +0 -44
  161. data/lib/albacore/xbuild.rb +0 -54
  162. data/lib/albacore/xunittestrunner.rb +0 -56
  163. data/lib/albacore/zipdirectory.rb +0 -106
  164. data/lib/version.rb +0 -3
  165. data/samples/Rakefile +0 -154
  166. data/spec/README.md +0 -9
  167. data/spec/albacoremodel_spec.rb +0 -53
  168. data/spec/assemblyinfo_contexts.rb +0 -52
  169. data/spec/assemblyinfo_spec.rb +0 -459
  170. data/spec/attrmethods_spec.rb +0 -136
  171. data/spec/config_spec.rb +0 -34
  172. data/spec/createtask_spec.rb +0 -237
  173. data/spec/csc_spec.rb +0 -253
  174. data/spec/docu_spec.rb +0 -109
  175. data/spec/exec_spec.rb +0 -45
  176. data/spec/fluentmigratorrunner_spec.rb +0 -256
  177. data/spec/ilmerge_spec.rb +0 -93
  178. data/spec/msbuild_spec.rb +0 -287
  179. data/spec/msdeploy_spec.rb +0 -124
  180. data/spec/mspec_spec.rb +0 -28
  181. data/spec/mstesttestrunner_spec.rb +0 -144
  182. data/spec/nant_spec.rb +0 -110
  183. data/spec/nchurn_spec.rb +0 -75
  184. data/spec/ncoverconsole_spec.rb +0 -353
  185. data/spec/ncoverreport_spec.rb +0 -619
  186. data/spec/ndepend_spec.rb +0 -72
  187. data/spec/netversion_spec.rb +0 -53
  188. data/spec/nugetinstall_spec.rb +0 -47
  189. data/spec/nugetupdate_spec.rb +0 -42
  190. data/spec/nunittestrunner_spec.rb +0 -115
  191. data/spec/nuspec_spec.rb +0 -85
  192. data/spec/output_spec.rb +0 -149
  193. data/spec/patches/docu_patch.rb +0 -13
  194. data/spec/patches/fail_patch.rb +0 -9
  195. data/spec/patches/system_patch.rb +0 -20
  196. data/spec/plink_spec.rb +0 -62
  197. data/spec/runcommand_spec.rb +0 -94
  198. data/spec/spec.opts +0 -1
  199. data/spec/specflowreport_spec.rb +0 -143
  200. data/spec/sqlcmd_spec.rb +0 -334
  201. data/spec/support/AssemblyInfo/AssemblyInfo.test +0 -9
  202. data/spec/support/AssemblyInfo/AssemblyInfoInput.test +0 -9
  203. data/spec/support/AssemblyInfo/assemblyinfo.yml +0 -2
  204. data/spec/support/CodeCoverage/mspec/assemblies/Machine.Specifications.dll +0 -0
  205. data/spec/support/CodeCoverage/mspec/assemblies/TestSolution.MSpecTests.dll +0 -0
  206. data/spec/support/CodeCoverage/mspec/assemblies/TestSolution.dll +0 -0
  207. data/spec/support/CodeCoverage/mspec/assemblies/nunit.framework.dll +0 -0
  208. data/spec/support/CodeCoverage/mstest/TestSolution.MSTestTests.NET40.dll +0 -0
  209. data/spec/support/CodeCoverage/mstest/TestSolution.MSTestTests.dll +0 -0
  210. data/spec/support/CodeCoverage/nunit/assemblies/TestSolution.Tests.dll +0 -0
  211. data/spec/support/CodeCoverage/nunit/assemblies/TestSolution.dll +0 -0
  212. data/spec/support/CodeCoverage/nunit/assemblies/nunit.framework.dll +0 -0
  213. data/spec/support/CodeCoverage/nunit/assemblies/with spaces/TestSolution.Tests.dll +0 -0
  214. data/spec/support/CodeCoverage/nunit/assemblies/with spaces/TestSolution.dll +0 -0
  215. data/spec/support/CodeCoverage/nunit/assemblies/with spaces/nunit.framework.dll +0 -0
  216. data/spec/support/CodeCoverage/nunit/failing_assemblies/TestSolution.FailingTests.dll +0 -0
  217. data/spec/support/CodeCoverage/nunit/failing_assemblies/nunit.framework.dll +0 -0
  218. data/spec/support/CodeCoverage/report/coverage.xml +0 -4578
  219. data/spec/support/CodeCoverage/xunit/assemblies/TestSolution.XUnitTests.dll +0 -0
  220. data/spec/support/CodeCoverage/xunit/assemblies/TestSolution.dll +0 -0
  221. data/spec/support/CodeCoverage/xunit/assemblies/xunit.dll +0 -0
  222. data/spec/support/CodeCoverage/xunit/assemblies/xunit.xml +0 -2604
  223. data/spec/support/FluentMigrator/FluentMigrator.dll +0 -0
  224. data/spec/support/FluentMigrator/TestSolution.FluentMigrator.dll +0 -0
  225. data/spec/support/SpecFlow/TechTalk.SpecFlow.dll +0 -0
  226. data/spec/support/SpecFlow/TestSolution.SpecFlow.dll +0 -0
  227. data/spec/support/SpecFlow/TestSolution.SpecFlow.pdb +0 -0
  228. data/spec/support/SpecFlow/TestSolution.dll +0 -0
  229. data/spec/support/SpecFlow/TestSolution.pdb +0 -0
  230. data/spec/support/SpecFlow/nunit.framework.dll +0 -0
  231. data/spec/support/TestSolution/LocalTestRun.testrunconfig +0 -5
  232. data/spec/support/TestSolution/NDependProject.xml +0 -315
  233. data/spec/support/TestSolution/TestSolution.5.0.ReSharper.user +0 -27
  234. data/spec/support/TestSolution/TestSolution.FailingTests/FailingTestFixture.cs +0 -19
  235. data/spec/support/TestSolution/TestSolution.FailingTests/Properties/AssemblyInfo.cs +0 -36
  236. data/spec/support/TestSolution/TestSolution.FailingTests/TestSolution.FailingTests.csproj +0 -101
  237. data/spec/support/TestSolution/TestSolution.FluentMigrator/M001_SampleMigration.cs +0 -19
  238. data/spec/support/TestSolution/TestSolution.FluentMigrator/Properties/AssemblyInfo.cs +0 -36
  239. data/spec/support/TestSolution/TestSolution.FluentMigrator/TestSolution.FluentMigrator.csproj +0 -101
  240. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy.sln +0 -20
  241. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/About.aspx +0 -13
  242. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/About.aspx.cs +0 -17
  243. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/About.aspx.designer.cs +0 -17
  244. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/ChangePassword.aspx +0 -60
  245. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/ChangePassword.aspx.cs +0 -17
  246. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/ChangePassword.aspx.designer.cs +0 -26
  247. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/ChangePasswordSuccess.aspx +0 -13
  248. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/ChangePasswordSuccess.aspx.cs +0 -17
  249. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/ChangePasswordSuccess.aspx.designer.cs +0 -17
  250. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/Login.aspx +0 -49
  251. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/Login.aspx.cs +0 -17
  252. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/Login.aspx.designer.cs +0 -35
  253. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/Register.aspx +0 -75
  254. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/Register.aspx.cs +0 -32
  255. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/Register.aspx.designer.cs +0 -35
  256. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/Web.config +0 -18
  257. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Default.aspx +0 -17
  258. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Default.aspx.cs +0 -17
  259. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Default.aspx.designer.cs +0 -17
  260. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Global.asax +0 -1
  261. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Global.asax.cs +0 -47
  262. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Properties/AssemblyInfo.cs +0 -35
  263. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Scripts/jquery-1.4.1-vsdoc.js +0 -8061
  264. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Scripts/jquery-1.4.1.js +0 -6111
  265. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Scripts/jquery-1.4.1.min.js +0 -167
  266. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Site.Master +0 -51
  267. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Site.Master.cs +0 -17
  268. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Site.Master.designer.cs +0 -71
  269. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Styles/Site.css +0 -294
  270. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/TestSolution.MSDeploy.Publish.xml +0 -2
  271. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/TestSolution.MSDeploy.csproj +0 -163
  272. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Web.Debug.config +0 -30
  273. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Web.Release.config +0 -31
  274. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Web.config +0 -52
  275. data/spec/support/TestSolution/TestSolution.MSTestTests.NET40/Properties/AssemblyInfo.cs +0 -36
  276. data/spec/support/TestSolution/TestSolution.MSTestTests.NET40/TestSolution.MSTestTests.NET40.csproj +0 -53
  277. data/spec/support/TestSolution/TestSolution.MSTestTests.NET40/Tests.cs +0 -20
  278. data/spec/support/TestSolution/TestSolution.MSTestTests/Properties/AssemblyInfo.cs +0 -35
  279. data/spec/support/TestSolution/TestSolution.MSTestTests/TestSolution.MSTestTests.csproj +0 -97
  280. data/spec/support/TestSolution/TestSolution.MSTestTests/Tests.cs +0 -20
  281. data/spec/support/TestSolution/TestSolution.MSpecTests/Properties/AssemblyInfo.cs +0 -36
  282. data/spec/support/TestSolution/TestSolution.MSpecTests/SomeSpecTest.cs +0 -18
  283. data/spec/support/TestSolution/TestSolution.MSpecTests/TestSolution.MSpecTests.csproj +0 -110
  284. data/spec/support/TestSolution/TestSolution.SpecFlow/OneFeature.feature +0 -8
  285. data/spec/support/TestSolution/TestSolution.SpecFlow/OneFeature.feature.cs +0 -73
  286. data/spec/support/TestSolution/TestSolution.SpecFlow/Properties/AssemblyInfo.cs +0 -36
  287. data/spec/support/TestSolution/TestSolution.SpecFlow/StepDefinition.cs +0 -30
  288. data/spec/support/TestSolution/TestSolution.SpecFlow/TestSolution.SpecFlow.csproj +0 -122
  289. data/spec/support/TestSolution/TestSolution.Tests/Properties/AssemblyInfo.cs +0 -36
  290. data/spec/support/TestSolution/TestSolution.Tests/SomeTestFixture.cs +0 -23
  291. data/spec/support/TestSolution/TestSolution.Tests/TestSolution.Tests.csproj +0 -107
  292. data/spec/support/TestSolution/TestSolution.XUnitTests/Class1.cs +0 -20
  293. data/spec/support/TestSolution/TestSolution.XUnitTests/FailingTestFixture.cs +0 -14
  294. data/spec/support/TestSolution/TestSolution.XUnitTests/Properties/AssemblyInfo.cs +0 -36
  295. data/spec/support/TestSolution/TestSolution.XUnitTests/TestSolution.XUnitTests.csproj +0 -108
  296. data/spec/support/TestSolution/TestSolution.build +0 -25
  297. data/spec/support/TestSolution/TestSolution.sln +0 -75
  298. data/spec/support/TestSolution/TestSolution.vsmdi +0 -6
  299. data/spec/support/TestSolution/TestSolution/Class1.cs +0 -17
  300. data/spec/support/TestSolution/TestSolution/Properties/AssemblyInfo.cs +0 -36
  301. data/spec/support/TestSolution/TestSolution/TestSolution.csproj +0 -97
  302. data/spec/support/Tools/FluentMigrator-0.9/FluentMigrator.MSBuild.dll +0 -0
  303. data/spec/support/Tools/FluentMigrator-0.9/FluentMigrator.NAnt.dll +0 -0
  304. data/spec/support/Tools/FluentMigrator-0.9/FluentMigrator.Runner.dll +0 -0
  305. data/spec/support/Tools/FluentMigrator-0.9/FluentMigrator.Runner.pdb +0 -0
  306. data/spec/support/Tools/FluentMigrator-0.9/FluentMigrator.Tests.dll +0 -0
  307. data/spec/support/Tools/FluentMigrator-0.9/FluentMigrator.Tests.pdb +0 -0
  308. data/spec/support/Tools/FluentMigrator-0.9/FluentMigrator.dll +0 -0
  309. data/spec/support/Tools/FluentMigrator-0.9/FluentMigrator.pdb +0 -0
  310. data/spec/support/Tools/FluentMigrator-0.9/Migrate.exe +0 -0
  311. data/spec/support/Tools/FluentMigrator-0.9/Migrate.exe.config +0 -6
  312. data/spec/support/Tools/FluentMigrator-0.9/Moq.dll +0 -0
  313. data/spec/support/Tools/FluentMigrator-0.9/Moq.xml +0 -3467
  314. data/spec/support/Tools/FluentMigrator-0.9/MySql.Data.dll +0 -0
  315. data/spec/support/Tools/FluentMigrator-0.9/NAnt.Core.dll +0 -0
  316. data/spec/support/Tools/FluentMigrator-0.9/NAnt.Core.xml +0 -14880
  317. data/spec/support/Tools/FluentMigrator-0.9/Oracle.DataAccess.dll +0 -0
  318. data/spec/support/Tools/FluentMigrator-0.9/System.Data.SQLite.DLL +0 -0
  319. data/spec/support/Tools/FluentMigrator-0.9/log4net.dll +0 -0
  320. data/spec/support/Tools/FluentMigrator-0.9/nunit.framework.dll +0 -0
  321. data/spec/support/Tools/FluentMigrator-0.9/nunit.should.dll +0 -0
  322. data/spec/support/Tools/FluentMigrator-0.9/testscript.sql +0 -1
  323. data/spec/support/Tools/MSTest-2008/MSTest.exe +0 -0
  324. data/spec/support/Tools/MSTest-2008/Microsoft.VisualStudio.QualityTools.CommandLine.dll +0 -0
  325. data/spec/support/Tools/MSTest-2008/Microsoft.VisualStudio.QualityTools.Common.dll +0 -0
  326. data/spec/support/Tools/MSTest-2008/Microsoft.VisualStudio.QualityTools.ControllerObject.dll +0 -0
  327. data/spec/support/Tools/MSTest-2008/Microsoft.VisualStudio.QualityTools.ExecutionCommon.dll +0 -0
  328. data/spec/support/Tools/MSTest-2008/Microsoft.VisualStudio.QualityTools.TMI.dll +0 -0
  329. data/spec/support/Tools/MSTest-2008/Microsoft.VisualStudio.QualityTools.Tips.UnitTest.Adapter.dll +0 -0
  330. data/spec/support/Tools/MSTest-2008/Microsoft.VisualStudio.QualityTools.Tips.UnitTest.AssemblyResolver.dll +0 -0
  331. data/spec/support/Tools/MSTest-2008/Microsoft.VisualStudio.QualityTools.Tips.UnitTest.ObjectModel.dll +0 -0
  332. data/spec/support/Tools/MSTest-2008/Microsoft.VisualStudio.QualityTools.Tips.UnitTest.Tip.dll +0 -0
  333. data/spec/support/Tools/MSTest-2010/MSTest.exe +0 -0
  334. data/spec/support/Tools/MSTest-2010/MSTest.exe.config +0 -31
  335. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.AgentObject.dll +0 -0
  336. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.AgentProcessManager.dll +0 -0
  337. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.CMI.dll +0 -0
  338. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.CheckinPolicies.dll +0 -0
  339. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.CodeCoverage.dll +0 -0
  340. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.CodedUITest.Controls.dll +0 -0
  341. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.CodedUITestFramework.dll +0 -0
  342. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.CodedUITestPackage.dll +0 -0
  343. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.CommandLine.dll +0 -0
  344. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Common.dll +0 -0
  345. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Controller.SpooledJob.dll +0 -0
  346. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.ControllerObject.dll +0 -0
  347. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.DataCollectionAgentObject.dll +0 -0
  348. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.ExecutionCommon.dll +0 -0
  349. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.HostAdapters.ASPNETAdapter.dll +0 -0
  350. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.HostAdapters.ASPNETAgent.dll +0 -0
  351. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Linking.dll +0 -0
  352. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.LoadTest.dll +0 -0
  353. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.LoadTestExcelAddIn.dll +0 -0
  354. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.LoadTestExcelAddIn.dll.manifest +0 -296
  355. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.LoadTestExcelAddIn.vsto +0 -150
  356. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.LoadTestExcelCommon.dll +0 -0
  357. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.LoadTestExcelCommon.tlb +0 -0
  358. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.LoadTestExec.dll +0 -0
  359. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.LoadTestFramework.dll +0 -0
  360. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.LoadTestPackage.dll +0 -0
  361. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.LoadTestUI.dll +0 -0
  362. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.NICServices.dll +0 -0
  363. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.NetworkEmulation.dll +0 -0
  364. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.OperationalStore.ClientHelper.dll +0 -0
  365. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.RecorderBar.dll +0 -0
  366. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.RecorderBarBHO100.dll +0 -0
  367. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Resource.dll +0 -0
  368. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Sqm.dll +0 -0
  369. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.TMI.dll +0 -0
  370. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.TestCaseManagement.dll +0 -0
  371. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.GenericTest.Adapter.dll +0 -0
  372. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.GenericTest.ObjectModel.dll +0 -0
  373. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.GenericTest.Tip.dll +0 -0
  374. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.ManualTest.Adapter.dll +0 -0
  375. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.ManualTest.ObjectModel.dll +0 -0
  376. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.ManualTest.Tip.dll +0 -0
  377. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.OrderedTest.Adapter.dll +0 -0
  378. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.OrderedTest.ObjectModel.dll +0 -0
  379. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.OrderedTest.Tip.dll +0 -0
  380. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.TuipPackage.dll +0 -0
  381. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.UnitTest.Adapter.dll +0 -0
  382. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.UnitTest.AssemblyResolver.dll +0 -0
  383. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.UnitTest.ObjectModel.dll +0 -0
  384. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.UnitTest.Tip.dll +0 -0
  385. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.WebLoadTest.Tip.dll +0 -0
  386. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.UnitTestFramework.dll +0 -0
  387. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Vsip.dll +0 -0
  388. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.WarehouseCommon.dll +0 -0
  389. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.WebTestFramework.dll +0 -0
  390. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.WebTestPlayback.dll +0 -0
  391. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Wizard.TestProjectWizards.dll +0 -0
  392. data/spec/support/Tools/MSTest-2010/mstest.reg +0 -0
  393. data/spec/support/Tools/Machine.Specifications-0.5.3/lib/Machine.Specifications.TDNetRunner.dll +0 -0
  394. data/spec/support/Tools/Machine.Specifications-0.5.3/lib/Machine.Specifications.dll +0 -0
  395. data/spec/support/Tools/Machine.Specifications-0.5.3/lib/Machine.Specifications.dll.tdnet +0 -5
  396. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/CommandLine.dll +0 -0
  397. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/CommandLine.xml +0 -504
  398. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallResharperRunner.4.1.bat +0 -5
  399. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallResharperRunner.4.5.bat +0 -5
  400. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallResharperRunner.5.0 - VS2008.bat +0 -5
  401. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallResharperRunner.5.0 - VS2010.bat +0 -5
  402. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallResharperRunner.5.1 - VS2008.bat +0 -5
  403. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallResharperRunner.5.1 - VS2010.bat +0 -5
  404. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallResharperRunner.6.0 - VS2008.bat +0 -5
  405. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallResharperRunner.6.0 - VS2010.bat +0 -5
  406. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallResharperRunner.6.1 - VS2008.bat +0 -5
  407. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallResharperRunner.6.1 - VS2010.bat +0 -5
  408. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallTDNetRunner.bat +0 -16
  409. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallTDNetRunnerSilent.bat +0 -16
  410. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/License.txt +0 -54
  411. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.GallioAdapter.3.1.dll +0 -0
  412. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.GallioAdapter.plugin +0 -43
  413. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.ReSharperRunner.4.1.dll +0 -0
  414. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.ReSharperRunner.4.5.dll +0 -0
  415. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.ReSharperRunner.5.0.dll +0 -0
  416. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.ReSharperRunner.5.1.dll +0 -0
  417. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.ReSharperRunner.6.0.dll +0 -0
  418. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.ReSharperRunner.6.1.dll +0 -0
  419. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.Reporting.Templates.dll +0 -0
  420. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.Reporting.dll +0 -0
  421. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.SeleniumSupport.dll +0 -0
  422. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.TDNetRunner.dll +0 -0
  423. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.WatinSupport.dll +0 -0
  424. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.dll +0 -0
  425. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.dll.tdnet +0 -5
  426. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/Spark.dll +0 -0
  427. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/TestDriven.Framework.dll +0 -0
  428. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/install.ps1 +0 -6
  429. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/mspec-clr4.exe +0 -0
  430. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/mspec-clr4.exe.config +0 -6
  431. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/mspec-x86-clr4.exe +0 -0
  432. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/mspec-x86-clr4.exe.config +0 -6
  433. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/mspec-x86.exe +0 -0
  434. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/mspec.exe +0 -0
  435. data/spec/support/Tools/NAnt-0.85/COPYING.txt +0 -340
  436. data/spec/support/Tools/NAnt-0.85/README.txt +0 -144
  437. data/spec/support/Tools/NChurn-v0.4/LICENSE.txt +0 -133
  438. data/spec/support/Tools/NChurn-v0.4/NChurn.exe +0 -0
  439. data/spec/support/Tools/NChurn-v0.4/README.md +0 -171
  440. data/spec/support/Tools/NChurn-v0.4/VERSION +0 -1
  441. data/spec/support/Tools/NChurn-v0.4/churn-0.4.0.0.txt +0 -178
  442. data/spec/support/Tools/NCover-v3.3/ActiproEULA.hml +0 -287
  443. data/spec/support/Tools/NCover-v3.3/ActiproSoftware.Shared.Wpf30.dll +0 -0
  444. data/spec/support/Tools/NCover-v3.3/ActiproSoftware.SyntaxEditor.Addons.DotNet.Wpf30.dll +0 -0
  445. data/spec/support/Tools/NCover-v3.3/ActiproSoftware.SyntaxEditor.Wpf30.dll +0 -0
  446. data/spec/support/Tools/NCover-v3.3/ActiproSoftware.Text.Net20.dll +0 -0
  447. data/spec/support/Tools/NCover-v3.3/AdminBootstrapper.exe +0 -0
  448. data/spec/support/Tools/NCover-v3.3/Build Task Plugins/MSBuildNCoverExample.proj +0 -237
  449. data/spec/support/Tools/NCover-v3.3/Build Task Plugins/MSBuildReportingExample.proj +0 -224
  450. data/spec/support/Tools/NCover-v3.3/Build Task Plugins/NAntNCoverExample.build +0 -241
  451. data/spec/support/Tools/NCover-v3.3/Build Task Plugins/NAntReportingExample.build +0 -218
  452. data/spec/support/Tools/NCover-v3.3/Build Task Plugins/NCover.MSBuildTasks.dll +0 -0
  453. data/spec/support/Tools/NCover-v3.3/Build Task Plugins/NCover.NAntTasks.dll +0 -0
  454. data/spec/support/Tools/NCover-v3.3/Build Task Plugins/NCoverExplorer.MSBuildTasks.dll +0 -0
  455. data/spec/support/Tools/NCover-v3.3/Build Task Plugins/NCoverExplorer.NAntTasks.dll +0 -0
  456. data/spec/support/Tools/NCover-v3.3/CC.Net/NCoverReporting30.xsl +0 -2313
  457. data/spec/support/Tools/NCover-v3.3/CC.Net/dashboard.config +0 -55
  458. data/spec/support/Tools/NCover-v3.3/CC.Net/excanvas.js +0 -35
  459. data/spec/support/Tools/NCover-v3.3/CC.Net/g.png +0 -0
  460. data/spec/support/Tools/NCover-v3.3/CC.Net/jquery-1.3.2.min.js +0 -19
  461. data/spec/support/Tools/NCover-v3.3/CC.Net/r.png +0 -0
  462. data/spec/support/Tools/NCover-v3.3/CC.Net/readme.txt +0 -51
  463. data/spec/support/Tools/NCover-v3.3/CC.Net/trends.js +0 -184
  464. data/spec/support/Tools/NCover-v3.3/CC.Net/y.png +0 -0
  465. data/spec/support/Tools/NCover-v3.3/MSVCM90.dll +0 -0
  466. data/spec/support/Tools/NCover-v3.3/MSVCP90.dll +0 -0
  467. data/spec/support/Tools/NCover-v3.3/MSVCR90.dll +0 -0
  468. data/spec/support/Tools/NCover-v3.3/Microsoft.VC90.CRT.manifest +0 -13
  469. data/spec/support/Tools/NCover-v3.3/Mindscape.LightSpeed.Linq.dll +0 -0
  470. data/spec/support/Tools/NCover-v3.3/Mindscape.LightSpeed.dll +0 -0
  471. data/spec/support/Tools/NCover-v3.3/NCover.Console.exe +0 -0
  472. data/spec/support/Tools/NCover-v3.3/NCover.Console.exe.config +0 -55
  473. data/spec/support/Tools/NCover-v3.3/NCover.Data.x86.dll +0 -0
  474. data/spec/support/Tools/NCover-v3.3/NCover.Explorer.Framework.dll +0 -0
  475. data/spec/support/Tools/NCover-v3.3/NCover.Explorer.exe +0 -0
  476. data/spec/support/Tools/NCover-v3.3/NCover.Explorer.exe.config +0 -16
  477. data/spec/support/Tools/NCover-v3.3/NCover.Framework.XmlSerializers.dll +0 -0
  478. data/spec/support/Tools/NCover-v3.3/NCover.Framework.dll +0 -0
  479. data/spec/support/Tools/NCover-v3.3/NCover.Interfaces.Core.dll +0 -0
  480. data/spec/support/Tools/NCover-v3.3/NCover.Interfaces.dll +0 -0
  481. data/spec/support/Tools/NCover-v3.3/NCover.Legacy.Configuration.dll +0 -0
  482. data/spec/support/Tools/NCover-v3.3/NCover.Lib.x86.dll +0 -0
  483. data/spec/support/Tools/NCover-v3.3/NCover.Registration.exe +0 -0
  484. data/spec/support/Tools/NCover-v3.3/NCover.Reporting.exe +0 -0
  485. data/spec/support/Tools/NCover-v3.3/NCover.Runner.dll +0 -0
  486. data/spec/support/Tools/NCover-v3.3/NCover.UpConvert.exe +0 -0
  487. data/spec/support/Tools/NCover-v3.3/NCover.Utilities.dll +0 -0
  488. data/spec/support/Tools/NCover-v3.3/NCoverEULA.pdf +0 -0
  489. data/spec/support/Tools/NCover-v3.3/NCoverExplorer.Console.exe +0 -0
  490. data/spec/support/Tools/NCover-v3.3/ReportingExample.config +0 -213
  491. data/spec/support/Tools/NCover-v3.3/System.Data.SQLite.dll +0 -0
  492. data/spec/support/Tools/NDepend-v2.12/EULA_NDepend.txt +0 -94
  493. data/spec/support/Tools/NDepend-v2.12/Lib/DevExpress.Data.v8.2.dll +0 -0
  494. data/spec/support/Tools/NDepend-v2.12/Lib/DevExpress.OfficeSkins.v8.2.dll +0 -0
  495. data/spec/support/Tools/NDepend-v2.12/Lib/DevExpress.Utils.v8.2.dll +0 -0
  496. data/spec/support/Tools/NDepend-v2.12/Lib/DevExpress.XtraBars.v8.2.dll +0 -0
  497. data/spec/support/Tools/NDepend-v2.12/Lib/DevExpress.XtraEditors.v8.2.dll +0 -0
  498. data/spec/support/Tools/NDepend-v2.12/Lib/DevExpress.XtraNavBar.v8.2.dll +0 -0
  499. data/spec/support/Tools/NDepend-v2.12/Lib/EnvDTE.dll +0 -0
  500. data/spec/support/Tools/NDepend-v2.12/Lib/Microsoft.Msagl.Drawing.dll +0 -0
  501. data/spec/support/Tools/NDepend-v2.12/Lib/Microsoft.Msagl.GraphViewerGdi.dll +0 -0
  502. data/spec/support/Tools/NDepend-v2.12/Lib/Microsoft.Msagl.GraphViewerGdi.dll.config +0 -3
  503. data/spec/support/Tools/NDepend-v2.12/Lib/Microsoft.Msagl.dll +0 -0
  504. data/spec/support/Tools/NDepend-v2.12/Lib/Microsoft.VisualStudio.OLE.Interop.dll +0 -0
  505. data/spec/support/Tools/NDepend-v2.12/Lib/Microsoft.VisualStudio.Shell.Interop.dll +0 -0
  506. data/spec/support/Tools/NDepend-v2.12/Lib/Microsoft.VisualStudio.Shell.dll +0 -0
  507. data/spec/support/Tools/NDepend-v2.12/Lib/Mono.Cecil.Pdb.dll +0 -0
  508. data/spec/support/Tools/NDepend-v2.12/Lib/Mono.Cecil.dll +0 -0
  509. data/spec/support/Tools/NDepend-v2.12/Lib/NDepend.AddIn.dll +0 -0
  510. data/spec/support/Tools/NDepend-v2.12/Lib/NDepend.Analysis.dll +0 -0
  511. data/spec/support/Tools/NDepend-v2.12/Lib/NDepend.CQL.dll +0 -0
  512. data/spec/support/Tools/NDepend-v2.12/Lib/NDepend.Framework.dll +0 -0
  513. data/spec/support/Tools/NDepend-v2.12/Lib/NDepend.Platform.DotNet.dll +0 -0
  514. data/spec/support/Tools/NDepend-v2.12/Lib/NDepend.Skins.dll +0 -0
  515. data/spec/support/Tools/NDepend-v2.12/Lib/NDepend.UI.dll +0 -0
  516. data/spec/support/Tools/NDepend-v2.12/Lib/msvcp71.dll +0 -0
  517. data/spec/support/Tools/NDepend-v2.12/Lib/msvcr71.dll +0 -0
  518. data/spec/support/Tools/NDepend-v2.12/NDepend.Console.exe +0 -0
  519. data/spec/support/Tools/NDepend-v2.12/NDepend.Console.exe.config +0 -8
  520. data/spec/support/Tools/NDepend-v2.12/QuickStartTutorial_NDepend.txt +0 -152
  521. data/spec/support/Tools/NDepend-v2.12/VisualNDepend.exe +0 -0
  522. data/spec/support/Tools/NUnit-v2.5/NUnitFitTests.html +0 -277
  523. data/spec/support/Tools/NUnit-v2.5/NUnitTests.config +0 -84
  524. data/spec/support/Tools/NUnit-v2.5/NUnitTests.nunit +0 -14
  525. data/spec/support/Tools/NUnit-v2.5/TestResult.xml +0 -32
  526. data/spec/support/Tools/NUnit-v2.5/agent.conf +0 -4
  527. data/spec/support/Tools/NUnit-v2.5/agent.log.conf +0 -18
  528. data/spec/support/Tools/NUnit-v2.5/clr.bat +0 -96
  529. data/spec/support/Tools/NUnit-v2.5/framework/nunit.framework.dll +0 -0
  530. data/spec/support/Tools/NUnit-v2.5/framework/nunit.framework.xml +0 -10088
  531. data/spec/support/Tools/NUnit-v2.5/framework/nunit.mocks.dll +0 -0
  532. data/spec/support/Tools/NUnit-v2.5/framework/pnunit.framework.dll +0 -0
  533. data/spec/support/Tools/NUnit-v2.5/launcher.log.conf +0 -18
  534. data/spec/support/Tools/NUnit-v2.5/lib/Failure.png +0 -0
  535. data/spec/support/Tools/NUnit-v2.5/lib/Ignored.png +0 -0
  536. data/spec/support/Tools/NUnit-v2.5/lib/Inconclusive.png +0 -0
  537. data/spec/support/Tools/NUnit-v2.5/lib/Skipped.png +0 -0
  538. data/spec/support/Tools/NUnit-v2.5/lib/Success.png +0 -0
  539. data/spec/support/Tools/NUnit-v2.5/lib/fit.dll +0 -0
  540. data/spec/support/Tools/NUnit-v2.5/lib/log4net.dll +0 -0
  541. data/spec/support/Tools/NUnit-v2.5/lib/nunit-console-runner.dll +0 -0
  542. data/spec/support/Tools/NUnit-v2.5/lib/nunit-gui-runner.dll +0 -0
  543. data/spec/support/Tools/NUnit-v2.5/lib/nunit.core.dll +0 -0
  544. data/spec/support/Tools/NUnit-v2.5/lib/nunit.core.interfaces.dll +0 -0
  545. data/spec/support/Tools/NUnit-v2.5/lib/nunit.fixtures.dll +0 -0
  546. data/spec/support/Tools/NUnit-v2.5/lib/nunit.uiexception.dll +0 -0
  547. data/spec/support/Tools/NUnit-v2.5/lib/nunit.uikit.dll +0 -0
  548. data/spec/support/Tools/NUnit-v2.5/lib/nunit.util.dll +0 -0
  549. data/spec/support/Tools/NUnit-v2.5/nunit-agent.exe +0 -0
  550. data/spec/support/Tools/NUnit-v2.5/nunit-agent.exe.config +0 -87
  551. data/spec/support/Tools/NUnit-v2.5/nunit-console-x86.exe +0 -0
  552. data/spec/support/Tools/NUnit-v2.5/nunit-console-x86.exe.config +0 -87
  553. data/spec/support/Tools/NUnit-v2.5/nunit-console.exe +0 -0
  554. data/spec/support/Tools/NUnit-v2.5/nunit-console.exe.config +0 -87
  555. data/spec/support/Tools/NUnit-v2.5/nunit-x86.exe +0 -0
  556. data/spec/support/Tools/NUnit-v2.5/nunit-x86.exe.config +0 -95
  557. data/spec/support/Tools/NUnit-v2.5/nunit.exe +0 -0
  558. data/spec/support/Tools/NUnit-v2.5/nunit.exe.config +0 -95
  559. data/spec/support/Tools/NUnit-v2.5/nunit.framework.dll +0 -0
  560. data/spec/support/Tools/NUnit-v2.5/pnunit-agent.exe +0 -0
  561. data/spec/support/Tools/NUnit-v2.5/pnunit-agent.exe.config +0 -87
  562. data/spec/support/Tools/NUnit-v2.5/pnunit-launcher.exe +0 -0
  563. data/spec/support/Tools/NUnit-v2.5/pnunit-launcher.exe.config +0 -87
  564. data/spec/support/Tools/NUnit-v2.5/pnunit.framework.dll +0 -0
  565. data/spec/support/Tools/NUnit-v2.5/pnunit.tests.dll +0 -0
  566. data/spec/support/Tools/NUnit-v2.5/runFile.exe +0 -0
  567. data/spec/support/Tools/NUnit-v2.5/runFile.exe.config +0 -43
  568. data/spec/support/Tools/NUnit-v2.5/runpnunit.bat +0 -2
  569. data/spec/support/Tools/NUnit-v2.5/test.conf +0 -24
  570. data/spec/support/Tools/PartCover-v2.3/Interop.PartCover.dll +0 -0
  571. data/spec/support/Tools/PartCover-v2.3/PartCover Browser Manual.rtf +0 -28853
  572. data/spec/support/Tools/PartCover-v2.3/PartCover Console Manual.rtf +0 -203
  573. data/spec/support/Tools/PartCover-v2.3/PartCover.Browser.Api.dll +0 -0
  574. data/spec/support/Tools/PartCover-v2.3/PartCover.Browser.exe +0 -0
  575. data/spec/support/Tools/PartCover-v2.3/PartCover.Browser.exe.config +0 -51
  576. data/spec/support/Tools/PartCover-v2.3/PartCover.CorDriver.dll +0 -0
  577. data/spec/support/Tools/PartCover-v2.3/PartCover.Framework.dll +0 -0
  578. data/spec/support/Tools/PartCover-v2.3/PartCover.exe +0 -0
  579. data/spec/support/Tools/PartCover-v2.3/PartCover.exe.config +0 -4
  580. data/spec/support/Tools/PartCover-v2.3/PartViewer.dll +0 -0
  581. data/spec/support/Tools/PartCover-v2.3/app.ico +0 -0
  582. data/spec/support/Tools/PartCover-v2.3/log4net.dll +0 -0
  583. data/spec/support/Tools/PartCover-v2.3/xslt/Report By Assembly.xslt +0 -54
  584. data/spec/support/Tools/PartCover-v2.3/xslt/Report By Class.xslt +0 -52
  585. data/spec/support/Tools/SpecFlow/Antlr3.Runtime.dll +0 -0
  586. data/spec/support/Tools/SpecFlow/Interop.SHDocVw.dll +0 -0
  587. data/spec/support/Tools/SpecFlow/TechTalk.SpecFlow.Generator.dll +0 -0
  588. data/spec/support/Tools/SpecFlow/TechTalk.SpecFlow.Parser.dll +0 -0
  589. data/spec/support/Tools/SpecFlow/TechTalk.SpecFlow.Reporting.dll +0 -0
  590. data/spec/support/Tools/SpecFlow/TechTalk.SpecFlow.VsIntegration.dll +0 -0
  591. data/spec/support/Tools/SpecFlow/TechTalk.SpecFlow.dll +0 -0
  592. data/spec/support/Tools/SpecFlow/TechTalk.SpecFlow.targets +0 -58
  593. data/spec/support/Tools/SpecFlow/TechTalk.SpecFlow.tasks +0 -17
  594. data/spec/support/Tools/SpecFlow/changelog.txt +0 -50
  595. data/spec/support/Tools/SpecFlow/specflow.exe +0 -0
  596. data/spec/support/Tools/XUnit-v1.9/EULA.txt +0 -29
  597. data/spec/support/Tools/XUnit-v1.9/HTML.xslt +0 -126
  598. data/spec/support/Tools/XUnit-v1.9/NUnitXml.xslt +0 -121
  599. data/spec/support/Tools/XUnit-v1.9/xunit.console.clr4.exe +0 -0
  600. data/spec/support/Tools/XUnit-v1.9/xunit.console.clr4.exe.config +0 -21
  601. data/spec/support/Tools/XUnit-v1.9/xunit.console.clr4.x86.exe +0 -0
  602. data/spec/support/Tools/XUnit-v1.9/xunit.console.clr4.x86.exe.config +0 -21
  603. data/spec/support/Tools/XUnit-v1.9/xunit.console.exe +0 -0
  604. data/spec/support/Tools/XUnit-v1.9/xunit.console.exe.config +0 -21
  605. data/spec/support/Tools/XUnit-v1.9/xunit.console.x86.exe +0 -0
  606. data/spec/support/Tools/XUnit-v1.9/xunit.console.x86.exe.config +0 -21
  607. data/spec/support/Tools/XUnit-v1.9/xunit.dll +0 -0
  608. data/spec/support/Tools/XUnit-v1.9/xunit.dll.tdnet +0 -5
  609. data/spec/support/Tools/XUnit-v1.9/xunit.extensions.dll +0 -0
  610. data/spec/support/Tools/XUnit-v1.9/xunit.extensions.xml +0 -805
  611. data/spec/support/Tools/XUnit-v1.9/xunit.gui.clr4.exe +0 -0
  612. data/spec/support/Tools/XUnit-v1.9/xunit.gui.clr4.x86.exe +0 -0
  613. data/spec/support/Tools/XUnit-v1.9/xunit.gui.exe +0 -0
  614. data/spec/support/Tools/XUnit-v1.9/xunit.gui.x86.exe +0 -0
  615. data/spec/support/Tools/XUnit-v1.9/xunit.installer.exe +0 -0
  616. data/spec/support/Tools/XUnit-v1.9/xunit.runner.msbuild.dll +0 -0
  617. data/spec/support/Tools/XUnit-v1.9/xunit.runner.tdnet.dll +0 -0
  618. data/spec/support/Tools/XUnit-v1.9/xunit.runner.utility.dll +0 -0
  619. data/spec/support/Tools/XUnit-v1.9/xunit.runner.utility.xml +0 -1212
  620. data/spec/support/Tools/XUnit-v1.9/xunit.xml +0 -2604
  621. data/spec/support/assemblyinfotester.rb +0 -52
  622. data/spec/support/csc/File1.cs +0 -9
  623. data/spec/support/csc/File2.cs +0 -9
  624. data/spec/support/csc/output/ignorethis.txt +0 -1
  625. data/spec/support/ironruby_validator.rb +0 -26
  626. data/spec/support/msbuildtestdata.rb +0 -32
  627. data/spec/support/nanttestdata.rb +0 -33
  628. data/spec/support/ncoverconsoletestdata.rb +0 -20
  629. data/spec/support/ncoverreporttestdata.rb +0 -26
  630. data/spec/support/nokogiri_validator.rb +0 -15
  631. data/spec/support/nuspec/nuspec.xsd +0 -84
  632. data/spec/support/outputtestdata.rb +0 -13
  633. data/spec/support/test.yml +0 -4
  634. data/spec/support/yamlconfig/msbuild.yml +0 -5
  635. data/spec/support/yamlconfig/yaml_autoconfig_test.yml +0 -1
  636. data/spec/support/zip/files/subfolder/sub file.txt +0 -1
  637. data/spec/support/zip/files/testfile.txt +0 -1
  638. data/spec/support/ziptestdata.rb +0 -13
  639. data/spec/unzip_spec.rb +0 -15
  640. data/spec/xbuild_spec.rb +0 -15
  641. data/spec/xunit_spec.rb +0 -200
  642. data/spec/yamlconfig_spec.rb +0 -49
  643. data/spec/zip_spec.rb +0 -160
@@ -1,619 +0,0 @@
1
- require 'spec_helper'
2
- require 'albacore/ncoverreport'
3
- require 'ncoverreporttestdata'
4
-
5
- describe NCoverReport, "when runnign without the ncover report location specified" do
6
- before :all do
7
- @ncover = NCoverReport.new
8
- @ncover.extend(FailPatch)
9
- @ncover.execute
10
- end
11
-
12
- it "should fail execution" do
13
- $task_failed.should be_true
14
- end
15
- end
16
-
17
- describe NCoverReport, "when running a full coverage report with a specified output folder" do
18
- before :all do
19
- NCoverReportTestData.clean_output_folder
20
-
21
- @ncover = NCoverReport.new
22
- @ncover.extend(SystemPatch)
23
- @ncover.log_level = :verbose
24
-
25
- @ncover.command = NCoverReportTestData.command
26
- @ncover.coverage_files NCoverReportTestData.coverage_file
27
-
28
- fullcoveragereport = NCover::FullCoverageReport.new()
29
- fullcoveragereport.output_path = NCoverReportTestData.output_folder
30
- @ncover.reports fullcoveragereport
31
-
32
- @ncover.execute
33
- end
34
-
35
- it "should execute ncover.reporting" do
36
- @ncover.system_command.should include(NCoverReportTestData.command)
37
- end
38
-
39
- it "should tell ncover.reporting to produce a full coverage html report in the specified folder" do
40
- @ncover.system_command.downcase.should include("//or FullCoverageReport:Html:\"#{NCoverReportTestData.output_folder}\"".downcase)
41
- end
42
-
43
- it "should produce the report" do
44
- File.exist?(File.join(NCoverReportTestData.output_folder, "fullcoveragereport.html")).should be_true
45
- end
46
- end
47
-
48
- describe NCoverReport, "when running a summary report with a specified output folder" do
49
- before :all do
50
- NCoverReportTestData.clean_output_folder
51
-
52
- @ncover = NCoverReport.new
53
- @ncover.extend(SystemPatch)
54
- @ncover.log_level = :verbose
55
-
56
- @ncover.command = NCoverReportTestData.command
57
- @ncover.coverage_files NCoverReportTestData.coverage_file
58
-
59
- summaryreport = NCover::SummaryReport.new()
60
- summaryreport.output_path = NCoverReportTestData.summary_output_file
61
- @ncover.reports summaryreport
62
-
63
- @ncover.execute
64
- end
65
-
66
- it "should execute ncover.reporting" do
67
- @ncover.system_command.should include(NCoverReportTestData.command)
68
- end
69
-
70
- it "should tell ncover.reporting to produce a summary html report in the specified folder" do
71
- @ncover.system_command.downcase.should include("//or Summary:Html:\"#{NCoverReportTestData.summary_output_file}\"".downcase)
72
- end
73
-
74
- it "should produce the report" do
75
- File.exist?(NCoverReportTestData.summary_output_file).should be_true
76
- end
77
- end
78
-
79
- describe NCoverReport, "when running multiple ncover reports - a summary and a full coverage report" do
80
- before :all do
81
- NCoverReportTestData.clean_output_folder
82
-
83
- @ncover = NCoverReport.new
84
- @ncover.extend(SystemPatch)
85
- @ncover.log_level = :verbose
86
-
87
- @ncover.command = NCoverReportTestData.command
88
- @ncover.coverage_files NCoverReportTestData.coverage_file
89
-
90
- summaryreport = NCover::SummaryReport.new()
91
- summaryreport.output_path = NCoverReportTestData.summary_output_file
92
-
93
- fullcoveragereport = NCover::FullCoverageReport.new()
94
- @fullcoverage_output_folder = File.join(NCoverReportTestData.output_folder, "fullcoverage")
95
- fullcoveragereport.output_path = @fullcoverage_output_folder
96
- @ncover.reports summaryreport, fullcoveragereport
97
-
98
- @ncover.execute
99
- end
100
-
101
- it "should tell ncover.reporting to produce a full coverage html report in the specified folder" do
102
- @ncover.system_command.downcase.should include("//or FullCoverageReport:Html:\"#{@fullcoverage_output_folder}\"".downcase)
103
- end
104
-
105
- it "should tell ncover.reporting to produce a summary html report in the specified folder" do
106
- @ncover.system_command.downcase.should include("//or Summary:Html:\"#{NCoverReportTestData.summary_output_file}\"".downcase)
107
- end
108
- end
109
-
110
- describe NCoverReport, "when running a report with a specified minimum symbol coverage lower than actual coverage" do
111
- before :all do
112
- NCoverReportTestData.clean_output_folder
113
-
114
- @ncover = NCoverReport.new
115
- @ncover.extend(SystemPatch)
116
- @ncover.extend(FailPatch)
117
- @ncover.log_level = :verbose
118
-
119
- @ncover.command = NCoverReportTestData.command
120
- @ncover.coverage_files NCoverReportTestData.coverage_file
121
-
122
- fullcoveragereport = NCover::FullCoverageReport.new
123
- fullcoveragereport.output_path = NCoverReportTestData.output_folder
124
- @ncover.reports fullcoveragereport
125
-
126
- symbolcoverage = NCover::SymbolCoverage.new
127
- symbolcoverage.minimum = 10
128
- @ncover.required_coverage symbolcoverage
129
-
130
- @ncover.execute
131
- end
132
-
133
- it "should tell ncover.reporting to check for the specified minimum coverage" do
134
- @ncover.system_command.should include("//mc SymbolCoverage:10:View")
135
- end
136
-
137
- it "should not fail the execution" do
138
- $task_failed.should be_false
139
- end
140
-
141
- it "should produce the report" do
142
- File.exist?(File.join(NCoverReportTestData.output_folder, "fullcoveragereport.html")).should be_true
143
- end
144
- end
145
-
146
- describe NCoverReport, "when running a report with a specified minimum symbol coverage higher than actual coverage" do
147
- before :all do
148
- NCoverReportTestData.clean_output_folder
149
-
150
- @ncover = NCoverReport.new
151
- @ncover.extend(SystemPatch)
152
- @ncover.extend(FailPatch)
153
- @ncover.log_level = :verbose
154
-
155
- @ncover.command = NCoverReportTestData.command
156
- @ncover.coverage_files NCoverReportTestData.coverage_file
157
-
158
- fullcoveragereport = NCover::FullCoverageReport.new
159
- fullcoveragereport.output_path = NCoverReportTestData.output_folder
160
- @ncover.reports fullcoveragereport
161
-
162
- symbolcoverage = NCover::SymbolCoverage.new
163
- symbolcoverage.minimum = 100
164
- @ncover.required_coverage symbolcoverage
165
-
166
- @ncover.execute
167
- end
168
-
169
- it "should tell ncover.reporting to check for the specified minimum coverage" do
170
- @ncover.system_command.should include("//mc SymbolCoverage:10")
171
- end
172
-
173
- it "should fail the execution" do
174
- $task_failed.should be_true
175
- end
176
-
177
- it "should produce the report" do
178
- File.exist?(File.join(NCoverReportTestData.output_folder, "fullcoveragereport.html")).should be_true
179
- end
180
- end
181
-
182
- describe NCoverReport, "when specifying the coverage item type to check" do
183
- before :all do
184
- NCoverReportTestData.clean_output_folder
185
-
186
- @ncover = NCoverReport.new
187
- @ncover.extend(SystemPatch)
188
- @ncover.extend(FailPatch)
189
- @ncover.log_level = :verbose
190
-
191
- @ncover.command = NCoverReportTestData.command
192
- @ncover.coverage_files NCoverReportTestData.coverage_file
193
-
194
- report = NCover::SummaryReport.new
195
- report.output_path = NCoverReportTestData.summary_output_file
196
- @ncover.reports report
197
-
198
- symbolcoverage = NCover::SymbolCoverage.new
199
- symbolcoverage.minimum = 10
200
- symbolcoverage.item_type = :Class
201
- @ncover.required_coverage symbolcoverage
202
-
203
- @ncover.execute
204
- end
205
-
206
- it "should tell ncover.reporting to check for the specified item type" do
207
- @ncover.system_command.should include("//mc SymbolCoverage:10:Class")
208
- end
209
-
210
- it "should produce the report" do
211
- File.exist?(NCoverReportTestData.summary_output_file).should be_true
212
- end
213
- end
214
-
215
- describe NCoverReport, "when checking more than one type of coverage and all fail" do
216
- before :all do
217
- NCoverReportTestData.clean_output_folder
218
-
219
- @ncover = NCoverReport.new
220
- @ncover.extend(SystemPatch)
221
- @ncover.extend(FailPatch)
222
- @ncover.log_level = :verbose
223
-
224
- @ncover.command = NCoverReportTestData.command
225
- @ncover.coverage_files NCoverReportTestData.coverage_file
226
-
227
- fullcoveragereport = NCover::FullCoverageReport.new
228
- fullcoveragereport.output_path = NCoverReportTestData.output_folder
229
- @ncover.reports fullcoveragereport
230
-
231
- @ncover.required_coverage(
232
- NCover::SymbolCoverage.new(:minimum => 100, :item_type => :View),
233
- NCover::BranchCoverage.new(:minimum => 10, :item_type => :Class),
234
- NCover::MethodCoverage.new(:minimum => 100, :item_type => :Class)
235
- )
236
-
237
- @ncover.execute
238
- end
239
-
240
- it "should tell ncover.reporting to check for the symbol coverage" do
241
- @ncover.system_command.should include("//mc SymbolCoverage:100:View")
242
- end
243
-
244
- it "should tell ncover.reporting to check for the branch coverage" do
245
- @ncover.system_command.should include("//mc BranchCoverage:10:Class")
246
- end
247
-
248
- it "should tell ncover.reporting to check for the branch coverage" do
249
- @ncover.system_command.should include("//mc MethodCoverage:100:Class")
250
- end
251
-
252
- it "should produce the report" do
253
- File.exist?(File.join(NCoverReportTestData.output_folder, "fullcoveragereport.html")).should be_true
254
- end
255
-
256
- it "should fail the execution" do
257
- $task_failed.should be_true
258
- end
259
- end
260
-
261
- describe NCoverReport, "when checking more than one type of coverage and all pass" do
262
- before :all do
263
- NCoverReportTestData.clean_output_folder
264
-
265
- @ncover = NCoverReport.new
266
- @ncover.extend(SystemPatch)
267
- @ncover.extend(FailPatch)
268
- @ncover.log_level = :verbose
269
-
270
- @ncover.command = NCoverReportTestData.command
271
- @ncover.coverage_files NCoverReportTestData.coverage_file
272
-
273
- fullcoveragereport = NCover::FullCoverageReport.new
274
- fullcoveragereport.output_path = NCoverReportTestData.output_folder
275
- @ncover.reports fullcoveragereport
276
-
277
- @ncover.required_coverage(
278
- NCover::SymbolCoverage.new(:minimum => 0, :item_type => :View),
279
- NCover::BranchCoverage.new(:minimum => 0, :item_type => :Class),
280
- NCover::MethodCoverage.new(:minimum => 0, :item_type => :Class)
281
- )
282
-
283
- @ncover.execute
284
- end
285
-
286
- it "should tell ncover.reporting to check for the symbol coverage" do
287
- @ncover.system_command.should include("//mc SymbolCoverage:0:View")
288
- end
289
-
290
- it "should tell ncover.reporting to check for the branch coverage" do
291
- @ncover.system_command.should include("//mc BranchCoverage:0:Class")
292
- end
293
-
294
- it "should tell ncover.reporting to check for the method coverage" do
295
- @ncover.system_command.should include("//mc MethodCoverage:0:Class")
296
- end
297
-
298
- it "should produce the report" do
299
- File.exist?(File.join(NCoverReportTestData.output_folder, "fullcoveragereport.html")).should be_true
300
- end
301
-
302
- it "should not fail the execution" do
303
- $task_failed.should be_false
304
- end
305
- end
306
-
307
- describe NCoverReport, "when checking more than one type of coverage and one fails" do
308
- before :all do
309
- NCoverReportTestData.clean_output_folder
310
-
311
- @ncover = NCoverReport.new
312
- @ncover.extend(SystemPatch)
313
- @ncover.extend(FailPatch)
314
- @ncover.log_level = :verbose
315
-
316
- @ncover.command = NCoverReportTestData.command
317
- @ncover.coverage_files NCoverReportTestData.coverage_file
318
-
319
- fullcoveragereport = NCover::FullCoverageReport.new
320
- fullcoveragereport.output_path = NCoverReportTestData.output_folder
321
- @ncover.reports fullcoveragereport
322
-
323
- @ncover.required_coverage(
324
- NCover::SymbolCoverage.new(:minimum => 100, :item_type => :View),
325
- NCover::BranchCoverage.new(:minimum => 0, :item_type => :Class)
326
- )
327
-
328
- @ncover.execute
329
- end
330
-
331
- it "should tell ncover.reporting to check for the symbol coverage" do
332
- @ncover.system_command.should include("//mc SymbolCoverage:100:View")
333
- end
334
-
335
- it "should tell ncover.reporting to check for the branch coverage" do
336
- @ncover.system_command.should include("//mc BranchCoverage:0:Class")
337
- end
338
-
339
- it "should produce the report" do
340
- File.exist?(File.join(NCoverReportTestData.output_folder, "fullcoveragereport.html")).should be_true
341
- end
342
-
343
- it "should fail the execution" do
344
- $task_failed.should be_true
345
- end
346
- end
347
-
348
- describe NCoverReport, "when running a report with a cyclomatic complexity higher than allowed" do
349
- before :all do
350
- NCoverReportTestData.clean_output_folder
351
-
352
- @ncover = NCoverReport.new
353
- @ncover.extend(SystemPatch)
354
- @ncover.extend(FailPatch)
355
- @ncover.log_level = :verbose
356
-
357
- @ncover.command = NCoverReportTestData.command
358
- @ncover.coverage_files NCoverReportTestData.coverage_file
359
-
360
- fullcoveragereport = NCover::FullCoverageReport.new
361
- fullcoveragereport.output_path = NCoverReportTestData.output_folder
362
- @ncover.reports fullcoveragereport
363
-
364
- coverage = NCover::CyclomaticComplexity.new(:maximum => 1, :item_type => :Class)
365
- @ncover.required_coverage coverage
366
-
367
- @ncover.execute
368
- end
369
-
370
- it "should tell ncover.reporting to check for the maximum cyclomatic complexity" do
371
- @ncover.system_command.should include("//mc CyclomaticComplexity:1:Class")
372
- end
373
-
374
- it "should fail the execution" do
375
- $task_failed.should be_true
376
- end
377
-
378
- it "should produce the report" do
379
- File.exist?(File.join(NCoverReportTestData.output_folder, "fullcoveragereport.html")).should be_true
380
- end
381
- end
382
-
383
- describe NCoverReport, "when running a report with a cyclomatic complexity under the limit" do
384
- before :all do
385
- NCoverReportTestData.clean_output_folder
386
-
387
- @ncover = NCoverReport.new
388
- @ncover.extend(SystemPatch)
389
- @ncover.extend(FailPatch)
390
- @ncover.log_level = :verbose
391
-
392
- @ncover.command = NCoverReportTestData.command
393
- @ncover.coverage_files NCoverReportTestData.coverage_file
394
-
395
- fullcoveragereport = NCover::FullCoverageReport.new
396
- fullcoveragereport.output_path = NCoverReportTestData.output_folder
397
- @ncover.reports fullcoveragereport
398
-
399
- coverage = NCover::CyclomaticComplexity.new(:maximum => 1000)
400
- @ncover.required_coverage coverage
401
-
402
- @ncover.execute
403
- end
404
-
405
- it "should tell ncover.reporting to check for the maximum cyclomatic complexity" do
406
- @ncover.system_command.should include("//mc CyclomaticComplexity:1000:View")
407
- end
408
-
409
- it "should not fail the execution" do
410
- $task_failed.should be_false
411
- end
412
-
413
- it "should produce the report" do
414
- File.exist?(File.join(NCoverReportTestData.output_folder, "fullcoveragereport.html")).should be_true
415
- end
416
- end
417
-
418
- describe NCoverReport, "when filtering on Assembly coverage data" do
419
- before :all do
420
- NCoverReportTestData.clean_output_folder
421
-
422
- @ncover = NCoverReport.new
423
- @ncover.extend(SystemPatch)
424
- @ncover.extend(FailPatch)
425
- @ncover.log_level = :verbose
426
-
427
- @ncover.command = NCoverReportTestData.command
428
- @ncover.coverage_files NCoverReportTestData.coverage_file
429
-
430
- fullcoveragereport = NCover::FullCoverageReport.new
431
- fullcoveragereport.output_path = NCoverReportTestData.output_folder
432
- @ncover.reports fullcoveragereport
433
- @ncover.required_coverage NCover::SymbolCoverage.new(:minimum => 0)
434
-
435
- @ncover.filters(
436
- NCover::AssemblyFilter.new(:filter_type => :exclude, :filter => "nunit.*"),
437
- NCover::AssemblyFilter.new(:filter_type => :include, :filter => "TestSolution.*")
438
- )
439
-
440
- @ncover.execute
441
- end
442
-
443
- it "should exclude the specified assemblies data" do
444
- @ncover.system_command.should include("//cf \"nunit.*\":Assembly:false:false")
445
- end
446
-
447
- it "should include the specified assemblies data" do
448
- @ncover.system_command.should include("//cf \"TestSolution.*\":Assembly:false:true")
449
- end
450
-
451
- it "should not fail" do
452
- $task_failed.should be_false
453
- end
454
- end
455
-
456
- describe NCoverReport, "when filtering on Namespace coverage data" do
457
- before :all do
458
- NCoverReportTestData.clean_output_folder
459
-
460
- @ncover = NCoverReport.new
461
- @ncover.extend(SystemPatch)
462
- @ncover.extend(FailPatch)
463
- @ncover.log_level = :verbose
464
-
465
- @ncover.command = NCoverReportTestData.command
466
- @ncover.coverage_files NCoverReportTestData.coverage_file
467
-
468
- fullcoveragereport = NCover::FullCoverageReport.new
469
- fullcoveragereport.output_path = NCoverReportTestData.output_folder
470
- @ncover.reports fullcoveragereport
471
- @ncover.required_coverage NCover::SymbolCoverage.new(:minimum => 0)
472
-
473
- @ncover.filters(
474
- NCover::NamespaceFilter.new(:filter_type => :exclude, :filter => "nunit.*"),
475
- NCover::NamespaceFilter.new(:filter_type => :include, :filter => "TestSolution.*")
476
- )
477
-
478
- @ncover.execute
479
- end
480
-
481
- it "should exclude the specified data" do
482
- @ncover.system_command.should include("//cf \"nunit.*\":Namespace:false:false")
483
- end
484
-
485
- it "should include the specified data" do
486
- @ncover.system_command.should include("//cf \"TestSolution.*\":Namespace:false:true")
487
- end
488
-
489
- it "should not fail" do
490
- $task_failed.should be_false
491
- end
492
- end
493
-
494
- describe NCoverReport, "when filtering on Class coverage data" do
495
- before :all do
496
- NCoverReportTestData.clean_output_folder
497
-
498
- @ncover = NCoverReport.new
499
- @ncover.extend(SystemPatch)
500
- @ncover.extend(FailPatch)
501
- @ncover.log_level = :verbose
502
-
503
- @ncover.command = NCoverReportTestData.command
504
- @ncover.coverage_files NCoverReportTestData.coverage_file
505
-
506
- fullcoveragereport = NCover::FullCoverageReport.new
507
- fullcoveragereport.output_path = NCoverReportTestData.output_folder
508
- @ncover.reports fullcoveragereport
509
- @ncover.required_coverage NCover::SymbolCoverage.new(:minimum => 0)
510
-
511
- @ncover.filters(
512
- NCover::ClassFilter.new(:filter_type => :exclude, :filter => "Foo"),
513
- NCover::ClassFilter.new(:filter_type => :include, :filter => "Bar")
514
- )
515
-
516
- @ncover.execute
517
- end
518
-
519
- it "should exclude the specified data" do
520
- @ncover.system_command.should include("//cf \"Foo\":Class:false:false")
521
- end
522
-
523
- it "should include the specified data" do
524
- @ncover.system_command.should include("//cf \"Bar\":Class:false:true")
525
- end
526
-
527
- it "should not fail" do
528
- $task_failed.should be_false
529
- end
530
- end
531
-
532
- describe NCoverReport, "when filtering on Method coverage data" do
533
- before :all do
534
- NCoverReportTestData.clean_output_folder
535
-
536
- @ncover = NCoverReport.new
537
- @ncover.extend(SystemPatch)
538
- @ncover.extend(FailPatch)
539
- @ncover.log_level = :verbose
540
-
541
- @ncover.command = NCoverReportTestData.command
542
- @ncover.coverage_files NCoverReportTestData.coverage_file
543
-
544
- fullcoveragereport = NCover::FullCoverageReport.new
545
- fullcoveragereport.output_path = NCoverReportTestData.output_folder
546
- @ncover.reports fullcoveragereport
547
- @ncover.required_coverage NCover::SymbolCoverage.new(:minimum => 0)
548
-
549
- @ncover.filters(
550
- NCover::MethodFilter.new(:filter_type => :exclude, :filter => "Foo"),
551
- NCover::MethodFilter.new(:filter_type => :include, :filter => "Bar")
552
- )
553
-
554
- @ncover.execute
555
- end
556
-
557
- it "should exclude the specified data" do
558
- @ncover.system_command.should include("//cf \"Foo\":Method:false:false")
559
- end
560
-
561
- it "should include the specified data" do
562
- @ncover.system_command.should include("//cf \"Bar\":Method:false:true")
563
- end
564
-
565
- it "should not fail" do
566
- $task_failed.should be_false
567
- end
568
- end
569
-
570
- describe NCoverReport, "when filtering on Document coverage data" do
571
- before :all do
572
- NCoverReportTestData.clean_output_folder
573
-
574
- @ncover = NCoverReport.new
575
- @ncover.extend(SystemPatch)
576
- @ncover.extend(FailPatch)
577
- @ncover.log_level = :verbose
578
-
579
- @ncover.command = NCoverReportTestData.command
580
- @ncover.coverage_files NCoverReportTestData.coverage_file
581
-
582
- fullcoveragereport = NCover::FullCoverageReport.new
583
- fullcoveragereport.output_path = NCoverReportTestData.output_folder
584
- @ncover.reports fullcoveragereport
585
- @ncover.required_coverage NCover::SymbolCoverage.new(:minimum => 0)
586
-
587
- @ncover.filters(
588
- NCover::DocumentFilter.new(:filter_type => :exclude, :filter => "Foo"),
589
- NCover::DocumentFilter.new(:filter_type => :include, :filter => "Bar")
590
- )
591
-
592
- @ncover.execute
593
- end
594
-
595
- it "should exclude the specified data" do
596
- @ncover.system_command.should include("//cf \"Foo\":Document:false:false")
597
- end
598
-
599
- it "should include the specified data" do
600
- @ncover.system_command.should include("//cf \"Bar\":Document:false:true")
601
- end
602
-
603
- it "should not fail" do
604
- $task_failed.should be_false
605
- end
606
- end
607
-
608
- describe NCoverReport, "when providing configuration values" do
609
- let :ncoverreport do
610
- Albacore.configure do |config|
611
- config.ncoverreport.command = "configured"
612
- end
613
- ncoverreport = NCoverReport.new
614
- end
615
-
616
- it "should use the configured values" do
617
- ncoverreport.command.should == "configured"
618
- end
619
- end