albacore 1.0.0.rc.2 → 1.0.0.rc.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.travis.yml +1 -1
- data/Guardfile +0 -9
- data/README.md +4 -4
- data/Rakefile +9 -14
- data/albacore.gemspec +29 -31
- data/lib/albacore.rb +22 -15
- data/lib/albacore/aspnetcompiler.rb +66 -44
- data/lib/albacore/assemblyinfo.rb +101 -120
- data/lib/albacore/assemblyinfolanguages/assemblyinfoengine.rb +13 -0
- data/lib/albacore/config/aspnetcompilerconfig.rb +5 -4
- data/lib/albacore/config/assemblyinfoconfig.rb +2 -4
- data/lib/albacore/config/cscconfig.rb +3 -3
- data/lib/albacore/config/docuconfig.rb +4 -8
- data/lib/albacore/config/execconfig.rb +9 -5
- data/lib/albacore/config/fluentmigratorconfig.rb +19 -0
- data/lib/albacore/config/ilmergeconfig.rb +5 -10
- data/lib/albacore/config/msbuildconfig.rb +3 -3
- data/lib/albacore/config/mspecconfig.rb +19 -0
- data/lib/albacore/config/mstestconfig.rb +19 -0
- data/lib/albacore/config/nantconfig.rb +9 -6
- data/lib/albacore/config/nchurnconfig.rb +9 -5
- data/lib/albacore/config/ncoverconsoleconfig.rb +9 -5
- data/lib/albacore/config/ncoverreportconfig.rb +9 -6
- data/lib/albacore/config/ndependconfig.rb +9 -5
- data/lib/albacore/config/netversion.rb +10 -6
- data/lib/albacore/config/nugetinstallconfig.rb +18 -0
- data/lib/albacore/config/nugetpackconfig.rb +2 -3
- data/lib/albacore/config/nugetpushconfig.rb +5 -6
- data/lib/albacore/config/nugetupdateconfig.rb +2 -3
- data/lib/albacore/config/nunitconfig.rb +19 -0
- data/lib/albacore/config/nuspecconfig.rb +18 -0
- data/lib/albacore/config/plinkconfig.rb +18 -0
- data/lib/albacore/config/specflowconfig.rb +18 -0
- data/lib/albacore/config/sqlcmdconfig.rb +9 -6
- data/lib/albacore/config/unzipconfig.rb +9 -5
- data/lib/albacore/config/xbuildconfig.rb +9 -6
- data/lib/albacore/config/xunitconfig.rb +18 -0
- data/lib/albacore/config/zipdirectoryconfig.rb +9 -6
- data/lib/albacore/csc.rb +56 -46
- data/lib/albacore/docu.rb +20 -23
- data/lib/albacore/exec.rb +8 -6
- data/lib/albacore/fluentmigrator.rb +69 -0
- data/lib/albacore/ilmerge.rb +23 -50
- data/lib/albacore/msbuild.rb +36 -59
- data/lib/albacore/mspec.rb +39 -0
- data/lib/albacore/mstest.rb +47 -0
- data/lib/albacore/nant.rb +23 -20
- data/lib/albacore/nchurn.rb +34 -59
- data/lib/albacore/ncoverconsole.rb +38 -50
- data/lib/albacore/ncoverreport.rb +24 -46
- data/lib/albacore/ncoverreports.rb +16 -0
- data/lib/albacore/ncoverreports/codecoveragebase.rb +8 -6
- data/lib/albacore/ncoverreports/cyclomaticcomplexity.rb +3 -3
- data/lib/albacore/ncoverreports/fullcoveragereport.rb +5 -9
- data/lib/albacore/ncoverreports/reportbase.rb +23 -0
- data/lib/albacore/ncoverreports/reportfilterbase.rb +10 -7
- data/lib/albacore/ncoverreports/summaryreport.rb +5 -14
- data/lib/albacore/ndepend.rb +17 -17
- data/lib/albacore/nugetinstall.rb +48 -43
- data/lib/albacore/nugetpack.rb +33 -37
- data/lib/albacore/nugetpush.rb +25 -31
- data/lib/albacore/nugetupdate.rb +28 -29
- data/lib/albacore/nunit.rb +46 -0
- data/lib/albacore/nuspec.rb +79 -77
- data/lib/albacore/output.rb +77 -80
- data/lib/albacore/plink.rb +35 -32
- data/lib/albacore/specflow.rb +30 -0
- data/lib/albacore/sqlcmd.rb +46 -61
- data/lib/albacore/support/platform.rb +25 -0
- data/lib/albacore/unzip.rb +42 -34
- data/lib/albacore/version.rb +1 -1
- data/lib/albacore/xbuild.rb +25 -38
- data/lib/albacore/xunit.rb +44 -0
- data/lib/albacore/zipdirectory.rb +106 -107
- data/spec/albacoremodel_spec.rb +52 -53
- data/spec/aspnetcompiler_spec.rb +84 -0
- data/spec/{support/TestSolution/TestSolution/Properties → assemblyinfo}/AssemblyInfo.cs +36 -36
- data/spec/assemblyinfo_spec.rb +209 -477
- data/spec/attrmethods_spec.rb +135 -136
- data/spec/config_spec.rb +32 -34
- data/spec/createtask_spec.rb +234 -237
- data/spec/csc_spec.rb +86 -253
- data/spec/docu_spec.rb +31 -109
- data/spec/exec_spec.rb +25 -45
- data/spec/fluentmigrator_spec.rb +88 -0
- data/spec/ilmerge_spec.rb +21 -79
- data/spec/msbuild_spec.rb +55 -287
- data/spec/mspec_spec.rb +30 -28
- data/spec/mstest_spec.rb +35 -0
- data/spec/nant_spec.rb +40 -110
- data/spec/nchurn_spec.rb +80 -75
- data/spec/ncoverconsole_spec.rb +80 -353
- data/spec/ncoverreport_spec.rb +139 -619
- data/spec/ndepend_spec.rb +26 -72
- data/spec/netversion_spec.rb +51 -53
- data/spec/nugetinstall_spec.rb +59 -47
- data/spec/nugetpack_spec.rb +49 -0
- data/spec/nugetpush_spec.rb +39 -0
- data/spec/nugetupdate_spec.rb +49 -42
- data/spec/nunit_spec.rb +35 -0
- data/spec/{support/nuspec → nuspec}/nuspec.xsd +0 -0
- data/spec/nuspec_spec.rb +74 -127
- data/spec/output/bar/bar.txt +0 -0
- data/spec/output/baz.txt +0 -0
- data/spec/output/erb.txt +1 -0
- data/spec/output/foo/foo/foo.txt +0 -0
- data/spec/output_spec.rb +67 -147
- data/spec/patch/system_patch.rb +12 -0
- data/spec/platform_spec.rb +15 -0
- data/spec/plink_spec.rb +56 -62
- data/spec/runcommand_spec.rb +92 -94
- data/spec/spec_helper.rb +20 -16
- data/spec/specflow_spec.rb +30 -0
- data/spec/sqlcmd_spec.rb +66 -334
- data/spec/unzip_spec.rb +1 -2
- data/spec/xbuild_spec.rb +40 -15
- data/spec/xunit_spec.rb +30 -200
- data/spec/yaml/test.yml +3 -0
- data/spec/yamlconfig_spec.rb +53 -49
- data/spec/zip/baz.txt +0 -0
- data/spec/zip/foo/bar/bar.txt +0 -0
- data/spec/zip/foo/foo.txt +0 -0
- data/spec/zip_spec.rb +63 -187
- metadata +78 -1098
- checksums.yaml +0 -7
- data/.rvmrc +0 -1
- data/lib/albacore/config/fluentmigratorrunnerconfig.rb +0 -15
- data/lib/albacore/config/msdeployconfig.rb +0 -15
- data/lib/albacore/config/mspectestrunnerconfig.rb +0 -15
- data/lib/albacore/config/mstesttestrunnerconfig.rb +0 -15
- data/lib/albacore/config/nugetpublishconfig.rb +0 -19
- data/lib/albacore/config/nunittestrunnerconfig.rb +0 -14
- data/lib/albacore/config/specflowreportconfig.rb +0 -24
- data/lib/albacore/config/vssgetconfig.rb +0 -14
- data/lib/albacore/config/xunittestrunnerconfig.rb +0 -15
- data/lib/albacore/fluentmigratorrunner.rb +0 -52
- data/lib/albacore/msdeploy.rb +0 -122
- data/lib/albacore/mspectestrunner.rb +0 -50
- data/lib/albacore/mstesttestrunner.rb +0 -43
- data/lib/albacore/nugetpublish.rb +0 -47
- data/lib/albacore/nunittestrunner.rb +0 -41
- data/lib/albacore/specflowreport.rb +0 -62
- data/lib/albacore/support/supportlinux.rb +0 -21
- data/lib/albacore/vssget.rb +0 -44
- data/lib/albacore/xunittestrunner.rb +0 -56
- data/samples/Rakefile +0 -154
- data/spec/README.md +0 -9
- data/spec/assemblyinfo_contexts.rb +0 -52
- data/spec/fluentmigratorrunner_spec.rb +0 -263
- data/spec/msdeploy_spec.rb +0 -124
- data/spec/mstesttestrunner_spec.rb +0 -144
- data/spec/nunittestrunner_spec.rb +0 -115
- data/spec/patches/docu_patch.rb +0 -13
- data/spec/patches/fail_patch.rb +0 -9
- data/spec/patches/system_patch.rb +0 -20
- data/spec/spec.opts +0 -1
- data/spec/specflowreport_spec.rb +0 -143
- data/spec/support/AssemblyInfo/AssemblyInfo.test +0 -6
- data/spec/support/AssemblyInfo/AssemblyInfoInput.test +0 -9
- data/spec/support/AssemblyInfo/assemblyinfo.yml +0 -2
- data/spec/support/CodeCoverage/mspec/assemblies/Machine.Specifications.dll +0 -0
- data/spec/support/CodeCoverage/mspec/assemblies/TestSolution.MSpecTests.dll +0 -0
- data/spec/support/CodeCoverage/mspec/assemblies/TestSolution.dll +0 -0
- data/spec/support/CodeCoverage/mspec/assemblies/nunit.framework.dll +0 -0
- data/spec/support/CodeCoverage/mstest/TestSolution.MSTestTests.NET40.dll +0 -0
- data/spec/support/CodeCoverage/mstest/TestSolution.MSTestTests.dll +0 -0
- data/spec/support/CodeCoverage/nunit/assemblies/TestSolution.Tests.dll +0 -0
- data/spec/support/CodeCoverage/nunit/assemblies/TestSolution.dll +0 -0
- data/spec/support/CodeCoverage/nunit/assemblies/nunit.framework.dll +0 -0
- data/spec/support/CodeCoverage/nunit/assemblies/with spaces/TestSolution.Tests.dll +0 -0
- data/spec/support/CodeCoverage/nunit/assemblies/with spaces/TestSolution.dll +0 -0
- data/spec/support/CodeCoverage/nunit/assemblies/with spaces/nunit.framework.dll +0 -0
- data/spec/support/CodeCoverage/nunit/failing_assemblies/TestSolution.FailingTests.dll +0 -0
- data/spec/support/CodeCoverage/nunit/failing_assemblies/nunit.framework.dll +0 -0
- data/spec/support/CodeCoverage/report/coverage.xml +0 -4578
- data/spec/support/CodeCoverage/xunit/assemblies/TestSolution.XUnitTests.dll +0 -0
- data/spec/support/CodeCoverage/xunit/assemblies/TestSolution.dll +0 -0
- data/spec/support/CodeCoverage/xunit/assemblies/xunit.dll +0 -0
- data/spec/support/CodeCoverage/xunit/assemblies/xunit.xml +0 -2604
- data/spec/support/FluentMigrator/FluentMigrator.dll +0 -0
- data/spec/support/FluentMigrator/TestSolution.FluentMigrator.dll +0 -0
- data/spec/support/SpecFlow/TechTalk.SpecFlow.dll +0 -0
- data/spec/support/SpecFlow/TestSolution.SpecFlow.dll +0 -0
- data/spec/support/SpecFlow/TestSolution.SpecFlow.pdb +0 -0
- data/spec/support/SpecFlow/TestSolution.dll +0 -0
- data/spec/support/SpecFlow/TestSolution.pdb +0 -0
- data/spec/support/SpecFlow/nunit.framework.dll +0 -0
- data/spec/support/TestSolution/LocalTestRun.testrunconfig +0 -5
- data/spec/support/TestSolution/NDependProject.xml +0 -315
- data/spec/support/TestSolution/TestSolution.5.0.ReSharper.user +0 -27
- data/spec/support/TestSolution/TestSolution.FailingTests/FailingTestFixture.cs +0 -19
- data/spec/support/TestSolution/TestSolution.FailingTests/Properties/AssemblyInfo.cs +0 -36
- data/spec/support/TestSolution/TestSolution.FailingTests/TestSolution.FailingTests.csproj +0 -101
- data/spec/support/TestSolution/TestSolution.FluentMigrator/M001_SampleMigration.cs +0 -19
- data/spec/support/TestSolution/TestSolution.FluentMigrator/Properties/AssemblyInfo.cs +0 -36
- data/spec/support/TestSolution/TestSolution.FluentMigrator/TestSolution.FluentMigrator.csproj +0 -101
- data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy.sln +0 -20
- data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/About.aspx +0 -13
- data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/About.aspx.cs +0 -17
- data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/About.aspx.designer.cs +0 -17
- data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/ChangePassword.aspx +0 -60
- data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/ChangePassword.aspx.cs +0 -17
- data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/ChangePassword.aspx.designer.cs +0 -26
- data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/ChangePasswordSuccess.aspx +0 -13
- data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/ChangePasswordSuccess.aspx.cs +0 -17
- data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/ChangePasswordSuccess.aspx.designer.cs +0 -17
- data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/Login.aspx +0 -49
- data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/Login.aspx.cs +0 -17
- data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/Login.aspx.designer.cs +0 -35
- data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/Register.aspx +0 -75
- data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/Register.aspx.cs +0 -32
- data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/Register.aspx.designer.cs +0 -35
- data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/Web.config +0 -18
- data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Default.aspx +0 -17
- data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Default.aspx.cs +0 -17
- data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Default.aspx.designer.cs +0 -17
- data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Global.asax +0 -1
- data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Global.asax.cs +0 -47
- data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Properties/AssemblyInfo.cs +0 -35
- data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Scripts/jquery-1.4.1-vsdoc.js +0 -8061
- data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Scripts/jquery-1.4.1.js +0 -6111
- data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Scripts/jquery-1.4.1.min.js +0 -167
- data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Site.Master +0 -51
- data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Site.Master.cs +0 -17
- data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Site.Master.designer.cs +0 -71
- data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Styles/Site.css +0 -294
- data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/TestSolution.MSDeploy.Publish.xml +0 -2
- data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/TestSolution.MSDeploy.csproj +0 -163
- data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Web.Debug.config +0 -30
- data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Web.Release.config +0 -31
- data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Web.config +0 -52
- data/spec/support/TestSolution/TestSolution.MSTestTests.NET40/Properties/AssemblyInfo.cs +0 -36
- data/spec/support/TestSolution/TestSolution.MSTestTests.NET40/TestSolution.MSTestTests.NET40.csproj +0 -53
- data/spec/support/TestSolution/TestSolution.MSTestTests.NET40/Tests.cs +0 -20
- data/spec/support/TestSolution/TestSolution.MSTestTests/Properties/AssemblyInfo.cs +0 -35
- data/spec/support/TestSolution/TestSolution.MSTestTests/TestSolution.MSTestTests.csproj +0 -97
- data/spec/support/TestSolution/TestSolution.MSTestTests/Tests.cs +0 -20
- data/spec/support/TestSolution/TestSolution.MSpecTests/Properties/AssemblyInfo.cs +0 -36
- data/spec/support/TestSolution/TestSolution.MSpecTests/SomeSpecTest.cs +0 -18
- data/spec/support/TestSolution/TestSolution.MSpecTests/TestSolution.MSpecTests.csproj +0 -110
- data/spec/support/TestSolution/TestSolution.SpecFlow/OneFeature.feature +0 -8
- data/spec/support/TestSolution/TestSolution.SpecFlow/OneFeature.feature.cs +0 -73
- data/spec/support/TestSolution/TestSolution.SpecFlow/Properties/AssemblyInfo.cs +0 -36
- data/spec/support/TestSolution/TestSolution.SpecFlow/StepDefinition.cs +0 -30
- data/spec/support/TestSolution/TestSolution.SpecFlow/TestSolution.SpecFlow.csproj +0 -122
- data/spec/support/TestSolution/TestSolution.Tests/Properties/AssemblyInfo.cs +0 -36
- data/spec/support/TestSolution/TestSolution.Tests/SomeTestFixture.cs +0 -23
- data/spec/support/TestSolution/TestSolution.Tests/TestSolution.Tests.csproj +0 -107
- data/spec/support/TestSolution/TestSolution.XUnitTests/Class1.cs +0 -20
- data/spec/support/TestSolution/TestSolution.XUnitTests/FailingTestFixture.cs +0 -14
- data/spec/support/TestSolution/TestSolution.XUnitTests/Properties/AssemblyInfo.cs +0 -36
- data/spec/support/TestSolution/TestSolution.XUnitTests/TestSolution.XUnitTests.csproj +0 -108
- data/spec/support/TestSolution/TestSolution.build +0 -25
- data/spec/support/TestSolution/TestSolution.sln +0 -75
- data/spec/support/TestSolution/TestSolution.vsmdi +0 -6
- data/spec/support/TestSolution/TestSolution/Class1.cs +0 -17
- data/spec/support/TestSolution/TestSolution/TestSolution.csproj +0 -97
- data/spec/support/Tools/FluentMigrator-0.9/FluentMigrator.MSBuild.dll +0 -0
- data/spec/support/Tools/FluentMigrator-0.9/FluentMigrator.NAnt.dll +0 -0
- data/spec/support/Tools/FluentMigrator-0.9/FluentMigrator.Runner.dll +0 -0
- data/spec/support/Tools/FluentMigrator-0.9/FluentMigrator.Runner.pdb +0 -0
- data/spec/support/Tools/FluentMigrator-0.9/FluentMigrator.Tests.dll +0 -0
- data/spec/support/Tools/FluentMigrator-0.9/FluentMigrator.Tests.pdb +0 -0
- data/spec/support/Tools/FluentMigrator-0.9/FluentMigrator.dll +0 -0
- data/spec/support/Tools/FluentMigrator-0.9/FluentMigrator.pdb +0 -0
- data/spec/support/Tools/FluentMigrator-0.9/Migrate.exe +0 -0
- data/spec/support/Tools/FluentMigrator-0.9/Migrate.exe.config +0 -6
- data/spec/support/Tools/FluentMigrator-0.9/Moq.dll +0 -0
- data/spec/support/Tools/FluentMigrator-0.9/Moq.xml +0 -3467
- data/spec/support/Tools/FluentMigrator-0.9/MySql.Data.dll +0 -0
- data/spec/support/Tools/FluentMigrator-0.9/NAnt.Core.dll +0 -0
- data/spec/support/Tools/FluentMigrator-0.9/NAnt.Core.xml +0 -14880
- data/spec/support/Tools/FluentMigrator-0.9/Oracle.DataAccess.dll +0 -0
- data/spec/support/Tools/FluentMigrator-0.9/System.Data.SQLite.DLL +0 -0
- data/spec/support/Tools/FluentMigrator-0.9/log4net.dll +0 -0
- data/spec/support/Tools/FluentMigrator-0.9/nunit.framework.dll +0 -0
- data/spec/support/Tools/FluentMigrator-0.9/nunit.should.dll +0 -0
- data/spec/support/Tools/FluentMigrator-0.9/testscript.sql +0 -1
- data/spec/support/Tools/MSTest-2008/MSTest.exe +0 -0
- data/spec/support/Tools/MSTest-2008/Microsoft.VisualStudio.QualityTools.CommandLine.dll +0 -0
- data/spec/support/Tools/MSTest-2008/Microsoft.VisualStudio.QualityTools.Common.dll +0 -0
- data/spec/support/Tools/MSTest-2008/Microsoft.VisualStudio.QualityTools.ControllerObject.dll +0 -0
- data/spec/support/Tools/MSTest-2008/Microsoft.VisualStudio.QualityTools.ExecutionCommon.dll +0 -0
- data/spec/support/Tools/MSTest-2008/Microsoft.VisualStudio.QualityTools.TMI.dll +0 -0
- data/spec/support/Tools/MSTest-2008/Microsoft.VisualStudio.QualityTools.Tips.UnitTest.Adapter.dll +0 -0
- data/spec/support/Tools/MSTest-2008/Microsoft.VisualStudio.QualityTools.Tips.UnitTest.AssemblyResolver.dll +0 -0
- data/spec/support/Tools/MSTest-2008/Microsoft.VisualStudio.QualityTools.Tips.UnitTest.ObjectModel.dll +0 -0
- data/spec/support/Tools/MSTest-2008/Microsoft.VisualStudio.QualityTools.Tips.UnitTest.Tip.dll +0 -0
- data/spec/support/Tools/MSTest-2010/MSTest.exe +0 -0
- data/spec/support/Tools/MSTest-2010/MSTest.exe.config +0 -31
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.AgentObject.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.AgentProcessManager.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.CMI.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.CheckinPolicies.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.CodeCoverage.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.CodedUITest.Controls.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.CodedUITestFramework.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.CodedUITestPackage.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.CommandLine.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Common.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Controller.SpooledJob.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.ControllerObject.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.DataCollectionAgentObject.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.ExecutionCommon.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.HostAdapters.ASPNETAdapter.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.HostAdapters.ASPNETAgent.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Linking.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.LoadTest.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.LoadTestExcelAddIn.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.LoadTestExcelAddIn.dll.manifest +0 -296
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.LoadTestExcelAddIn.vsto +0 -150
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.LoadTestExcelCommon.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.LoadTestExcelCommon.tlb +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.LoadTestExec.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.LoadTestFramework.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.LoadTestPackage.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.LoadTestUI.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.NICServices.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.NetworkEmulation.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.OperationalStore.ClientHelper.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.RecorderBar.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.RecorderBarBHO100.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Resource.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Sqm.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.TMI.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.TestCaseManagement.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.GenericTest.Adapter.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.GenericTest.ObjectModel.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.GenericTest.Tip.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.ManualTest.Adapter.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.ManualTest.ObjectModel.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.ManualTest.Tip.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.OrderedTest.Adapter.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.OrderedTest.ObjectModel.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.OrderedTest.Tip.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.TuipPackage.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.UnitTest.Adapter.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.UnitTest.AssemblyResolver.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.UnitTest.ObjectModel.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.UnitTest.Tip.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.WebLoadTest.Tip.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.UnitTestFramework.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Vsip.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.WarehouseCommon.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.WebTestFramework.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.WebTestPlayback.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Wizard.TestProjectWizards.dll +0 -0
- data/spec/support/Tools/MSTest-2010/mstest.reg +0 -0
- data/spec/support/Tools/Machine.Specifications-0.5.3/lib/Machine.Specifications.TDNetRunner.dll +0 -0
- data/spec/support/Tools/Machine.Specifications-0.5.3/lib/Machine.Specifications.dll +0 -0
- data/spec/support/Tools/Machine.Specifications-0.5.3/lib/Machine.Specifications.dll.tdnet +0 -5
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/CommandLine.dll +0 -0
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/CommandLine.xml +0 -504
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallResharperRunner.4.1.bat +0 -5
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallResharperRunner.4.5.bat +0 -5
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallResharperRunner.5.0 - VS2008.bat +0 -5
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallResharperRunner.5.0 - VS2010.bat +0 -5
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallResharperRunner.5.1 - VS2008.bat +0 -5
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallResharperRunner.5.1 - VS2010.bat +0 -5
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallResharperRunner.6.0 - VS2008.bat +0 -5
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallResharperRunner.6.0 - VS2010.bat +0 -5
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallResharperRunner.6.1 - VS2008.bat +0 -5
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallResharperRunner.6.1 - VS2010.bat +0 -5
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallTDNetRunner.bat +0 -16
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallTDNetRunnerSilent.bat +0 -16
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/License.txt +0 -54
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.GallioAdapter.3.1.dll +0 -0
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.GallioAdapter.plugin +0 -43
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.ReSharperRunner.4.1.dll +0 -0
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.ReSharperRunner.4.5.dll +0 -0
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.ReSharperRunner.5.0.dll +0 -0
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.ReSharperRunner.5.1.dll +0 -0
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.ReSharperRunner.6.0.dll +0 -0
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.ReSharperRunner.6.1.dll +0 -0
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.Reporting.Templates.dll +0 -0
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.Reporting.dll +0 -0
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.SeleniumSupport.dll +0 -0
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.TDNetRunner.dll +0 -0
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.WatinSupport.dll +0 -0
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.dll +0 -0
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.dll.tdnet +0 -5
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/Spark.dll +0 -0
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/TestDriven.Framework.dll +0 -0
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/install.ps1 +0 -6
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/mspec-clr4.exe +0 -0
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/mspec-clr4.exe.config +0 -6
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/mspec-x86-clr4.exe +0 -0
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/mspec-x86-clr4.exe.config +0 -6
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/mspec-x86.exe +0 -0
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/mspec.exe +0 -0
- data/spec/support/Tools/NAnt-0.85/COPYING.txt +0 -340
- data/spec/support/Tools/NAnt-0.85/README.txt +0 -144
- data/spec/support/Tools/NChurn-v0.4/LICENSE.txt +0 -133
- data/spec/support/Tools/NChurn-v0.4/NChurn.exe +0 -0
- data/spec/support/Tools/NChurn-v0.4/README.md +0 -171
- data/spec/support/Tools/NChurn-v0.4/VERSION +0 -1
- data/spec/support/Tools/NChurn-v0.4/churn-0.4.0.0.txt +0 -178
- data/spec/support/Tools/NCover-v3.3/ActiproEULA.hml +0 -287
- data/spec/support/Tools/NCover-v3.3/ActiproSoftware.Shared.Wpf30.dll +0 -0
- data/spec/support/Tools/NCover-v3.3/ActiproSoftware.SyntaxEditor.Addons.DotNet.Wpf30.dll +0 -0
- data/spec/support/Tools/NCover-v3.3/ActiproSoftware.SyntaxEditor.Wpf30.dll +0 -0
- data/spec/support/Tools/NCover-v3.3/ActiproSoftware.Text.Net20.dll +0 -0
- data/spec/support/Tools/NCover-v3.3/AdminBootstrapper.exe +0 -0
- data/spec/support/Tools/NCover-v3.3/Build Task Plugins/MSBuildNCoverExample.proj +0 -237
- data/spec/support/Tools/NCover-v3.3/Build Task Plugins/MSBuildReportingExample.proj +0 -224
- data/spec/support/Tools/NCover-v3.3/Build Task Plugins/NAntNCoverExample.build +0 -241
- data/spec/support/Tools/NCover-v3.3/Build Task Plugins/NAntReportingExample.build +0 -218
- data/spec/support/Tools/NCover-v3.3/Build Task Plugins/NCover.MSBuildTasks.dll +0 -0
- data/spec/support/Tools/NCover-v3.3/Build Task Plugins/NCover.NAntTasks.dll +0 -0
- data/spec/support/Tools/NCover-v3.3/Build Task Plugins/NCoverExplorer.MSBuildTasks.dll +0 -0
- data/spec/support/Tools/NCover-v3.3/Build Task Plugins/NCoverExplorer.NAntTasks.dll +0 -0
- data/spec/support/Tools/NCover-v3.3/CC.Net/NCoverReporting30.xsl +0 -2313
- data/spec/support/Tools/NCover-v3.3/CC.Net/dashboard.config +0 -55
- data/spec/support/Tools/NCover-v3.3/CC.Net/excanvas.js +0 -35
- data/spec/support/Tools/NCover-v3.3/CC.Net/g.png +0 -0
- data/spec/support/Tools/NCover-v3.3/CC.Net/jquery-1.3.2.min.js +0 -19
- data/spec/support/Tools/NCover-v3.3/CC.Net/r.png +0 -0
- data/spec/support/Tools/NCover-v3.3/CC.Net/readme.txt +0 -51
- data/spec/support/Tools/NCover-v3.3/CC.Net/trends.js +0 -184
- data/spec/support/Tools/NCover-v3.3/CC.Net/y.png +0 -0
- data/spec/support/Tools/NCover-v3.3/MSVCM90.dll +0 -0
- data/spec/support/Tools/NCover-v3.3/MSVCP90.dll +0 -0
- data/spec/support/Tools/NCover-v3.3/MSVCR90.dll +0 -0
- data/spec/support/Tools/NCover-v3.3/Microsoft.VC90.CRT.manifest +0 -13
- data/spec/support/Tools/NCover-v3.3/Mindscape.LightSpeed.Linq.dll +0 -0
- data/spec/support/Tools/NCover-v3.3/Mindscape.LightSpeed.dll +0 -0
- data/spec/support/Tools/NCover-v3.3/NCover.Console.exe +0 -0
- data/spec/support/Tools/NCover-v3.3/NCover.Console.exe.config +0 -55
- data/spec/support/Tools/NCover-v3.3/NCover.Data.x86.dll +0 -0
- data/spec/support/Tools/NCover-v3.3/NCover.Explorer.Framework.dll +0 -0
- data/spec/support/Tools/NCover-v3.3/NCover.Explorer.exe +0 -0
- data/spec/support/Tools/NCover-v3.3/NCover.Explorer.exe.config +0 -16
- data/spec/support/Tools/NCover-v3.3/NCover.Framework.XmlSerializers.dll +0 -0
- data/spec/support/Tools/NCover-v3.3/NCover.Framework.dll +0 -0
- data/spec/support/Tools/NCover-v3.3/NCover.Interfaces.Core.dll +0 -0
- data/spec/support/Tools/NCover-v3.3/NCover.Interfaces.dll +0 -0
- data/spec/support/Tools/NCover-v3.3/NCover.Legacy.Configuration.dll +0 -0
- data/spec/support/Tools/NCover-v3.3/NCover.Lib.x86.dll +0 -0
- data/spec/support/Tools/NCover-v3.3/NCover.Registration.exe +0 -0
- data/spec/support/Tools/NCover-v3.3/NCover.Reporting.exe +0 -0
- data/spec/support/Tools/NCover-v3.3/NCover.Runner.dll +0 -0
- data/spec/support/Tools/NCover-v3.3/NCover.UpConvert.exe +0 -0
- data/spec/support/Tools/NCover-v3.3/NCover.Utilities.dll +0 -0
- data/spec/support/Tools/NCover-v3.3/NCoverEULA.pdf +0 -0
- data/spec/support/Tools/NCover-v3.3/NCoverExplorer.Console.exe +0 -0
- data/spec/support/Tools/NCover-v3.3/ReportingExample.config +0 -213
- data/spec/support/Tools/NCover-v3.3/System.Data.SQLite.dll +0 -0
- data/spec/support/Tools/NDepend-v2.12/EULA_NDepend.txt +0 -94
- data/spec/support/Tools/NDepend-v2.12/Lib/DevExpress.Data.v8.2.dll +0 -0
- data/spec/support/Tools/NDepend-v2.12/Lib/DevExpress.OfficeSkins.v8.2.dll +0 -0
- data/spec/support/Tools/NDepend-v2.12/Lib/DevExpress.Utils.v8.2.dll +0 -0
- data/spec/support/Tools/NDepend-v2.12/Lib/DevExpress.XtraBars.v8.2.dll +0 -0
- data/spec/support/Tools/NDepend-v2.12/Lib/DevExpress.XtraEditors.v8.2.dll +0 -0
- data/spec/support/Tools/NDepend-v2.12/Lib/DevExpress.XtraNavBar.v8.2.dll +0 -0
- data/spec/support/Tools/NDepend-v2.12/Lib/EnvDTE.dll +0 -0
- data/spec/support/Tools/NDepend-v2.12/Lib/Microsoft.Msagl.Drawing.dll +0 -0
- data/spec/support/Tools/NDepend-v2.12/Lib/Microsoft.Msagl.GraphViewerGdi.dll +0 -0
- data/spec/support/Tools/NDepend-v2.12/Lib/Microsoft.Msagl.GraphViewerGdi.dll.config +0 -3
- data/spec/support/Tools/NDepend-v2.12/Lib/Microsoft.Msagl.dll +0 -0
- data/spec/support/Tools/NDepend-v2.12/Lib/Microsoft.VisualStudio.OLE.Interop.dll +0 -0
- data/spec/support/Tools/NDepend-v2.12/Lib/Microsoft.VisualStudio.Shell.Interop.dll +0 -0
- data/spec/support/Tools/NDepend-v2.12/Lib/Microsoft.VisualStudio.Shell.dll +0 -0
- data/spec/support/Tools/NDepend-v2.12/Lib/Mono.Cecil.Pdb.dll +0 -0
- data/spec/support/Tools/NDepend-v2.12/Lib/Mono.Cecil.dll +0 -0
- data/spec/support/Tools/NDepend-v2.12/Lib/NDepend.AddIn.dll +0 -0
- data/spec/support/Tools/NDepend-v2.12/Lib/NDepend.Analysis.dll +0 -0
- data/spec/support/Tools/NDepend-v2.12/Lib/NDepend.CQL.dll +0 -0
- data/spec/support/Tools/NDepend-v2.12/Lib/NDepend.Framework.dll +0 -0
- data/spec/support/Tools/NDepend-v2.12/Lib/NDepend.Platform.DotNet.dll +0 -0
- data/spec/support/Tools/NDepend-v2.12/Lib/NDepend.Skins.dll +0 -0
- data/spec/support/Tools/NDepend-v2.12/Lib/NDepend.UI.dll +0 -0
- data/spec/support/Tools/NDepend-v2.12/Lib/msvcp71.dll +0 -0
- data/spec/support/Tools/NDepend-v2.12/Lib/msvcr71.dll +0 -0
- data/spec/support/Tools/NDepend-v2.12/NDepend.Console.exe +0 -0
- data/spec/support/Tools/NDepend-v2.12/NDepend.Console.exe.config +0 -8
- data/spec/support/Tools/NDepend-v2.12/QuickStartTutorial_NDepend.txt +0 -152
- data/spec/support/Tools/NDepend-v2.12/VisualNDepend.exe +0 -0
- data/spec/support/Tools/NUnit-v2.5/NUnitFitTests.html +0 -277
- data/spec/support/Tools/NUnit-v2.5/NUnitTests.config +0 -84
- data/spec/support/Tools/NUnit-v2.5/NUnitTests.nunit +0 -14
- data/spec/support/Tools/NUnit-v2.5/TestResult.xml +0 -32
- data/spec/support/Tools/NUnit-v2.5/agent.conf +0 -4
- data/spec/support/Tools/NUnit-v2.5/agent.log.conf +0 -18
- data/spec/support/Tools/NUnit-v2.5/clr.bat +0 -96
- data/spec/support/Tools/NUnit-v2.5/framework/nunit.framework.dll +0 -0
- data/spec/support/Tools/NUnit-v2.5/framework/nunit.framework.xml +0 -10088
- data/spec/support/Tools/NUnit-v2.5/framework/nunit.mocks.dll +0 -0
- data/spec/support/Tools/NUnit-v2.5/framework/pnunit.framework.dll +0 -0
- data/spec/support/Tools/NUnit-v2.5/launcher.log.conf +0 -18
- data/spec/support/Tools/NUnit-v2.5/lib/Failure.png +0 -0
- data/spec/support/Tools/NUnit-v2.5/lib/Ignored.png +0 -0
- data/spec/support/Tools/NUnit-v2.5/lib/Inconclusive.png +0 -0
- data/spec/support/Tools/NUnit-v2.5/lib/Skipped.png +0 -0
- data/spec/support/Tools/NUnit-v2.5/lib/Success.png +0 -0
- data/spec/support/Tools/NUnit-v2.5/lib/fit.dll +0 -0
- data/spec/support/Tools/NUnit-v2.5/lib/log4net.dll +0 -0
- data/spec/support/Tools/NUnit-v2.5/lib/nunit-console-runner.dll +0 -0
- data/spec/support/Tools/NUnit-v2.5/lib/nunit-gui-runner.dll +0 -0
- data/spec/support/Tools/NUnit-v2.5/lib/nunit.core.dll +0 -0
- data/spec/support/Tools/NUnit-v2.5/lib/nunit.core.interfaces.dll +0 -0
- data/spec/support/Tools/NUnit-v2.5/lib/nunit.fixtures.dll +0 -0
- data/spec/support/Tools/NUnit-v2.5/lib/nunit.uiexception.dll +0 -0
- data/spec/support/Tools/NUnit-v2.5/lib/nunit.uikit.dll +0 -0
- data/spec/support/Tools/NUnit-v2.5/lib/nunit.util.dll +0 -0
- data/spec/support/Tools/NUnit-v2.5/nunit-agent.exe +0 -0
- data/spec/support/Tools/NUnit-v2.5/nunit-agent.exe.config +0 -87
- data/spec/support/Tools/NUnit-v2.5/nunit-console-x86.exe +0 -0
- data/spec/support/Tools/NUnit-v2.5/nunit-console-x86.exe.config +0 -87
- data/spec/support/Tools/NUnit-v2.5/nunit-console.exe +0 -0
- data/spec/support/Tools/NUnit-v2.5/nunit-console.exe.config +0 -87
- data/spec/support/Tools/NUnit-v2.5/nunit-x86.exe +0 -0
- data/spec/support/Tools/NUnit-v2.5/nunit-x86.exe.config +0 -95
- data/spec/support/Tools/NUnit-v2.5/nunit.exe +0 -0
- data/spec/support/Tools/NUnit-v2.5/nunit.exe.config +0 -95
- data/spec/support/Tools/NUnit-v2.5/nunit.framework.dll +0 -0
- data/spec/support/Tools/NUnit-v2.5/pnunit-agent.exe +0 -0
- data/spec/support/Tools/NUnit-v2.5/pnunit-agent.exe.config +0 -87
- data/spec/support/Tools/NUnit-v2.5/pnunit-launcher.exe +0 -0
- data/spec/support/Tools/NUnit-v2.5/pnunit-launcher.exe.config +0 -87
- data/spec/support/Tools/NUnit-v2.5/pnunit.framework.dll +0 -0
- data/spec/support/Tools/NUnit-v2.5/pnunit.tests.dll +0 -0
- data/spec/support/Tools/NUnit-v2.5/runFile.exe +0 -0
- data/spec/support/Tools/NUnit-v2.5/runFile.exe.config +0 -43
- data/spec/support/Tools/NUnit-v2.5/runpnunit.bat +0 -2
- data/spec/support/Tools/NUnit-v2.5/test.conf +0 -24
- data/spec/support/Tools/PartCover-v2.3/Interop.PartCover.dll +0 -0
- data/spec/support/Tools/PartCover-v2.3/PartCover Browser Manual.rtf +0 -28853
- data/spec/support/Tools/PartCover-v2.3/PartCover Console Manual.rtf +0 -203
- data/spec/support/Tools/PartCover-v2.3/PartCover.Browser.Api.dll +0 -0
- data/spec/support/Tools/PartCover-v2.3/PartCover.Browser.exe +0 -0
- data/spec/support/Tools/PartCover-v2.3/PartCover.Browser.exe.config +0 -51
- data/spec/support/Tools/PartCover-v2.3/PartCover.CorDriver.dll +0 -0
- data/spec/support/Tools/PartCover-v2.3/PartCover.Framework.dll +0 -0
- data/spec/support/Tools/PartCover-v2.3/PartCover.exe +0 -0
- data/spec/support/Tools/PartCover-v2.3/PartCover.exe.config +0 -4
- data/spec/support/Tools/PartCover-v2.3/PartViewer.dll +0 -0
- data/spec/support/Tools/PartCover-v2.3/app.ico +0 -0
- data/spec/support/Tools/PartCover-v2.3/log4net.dll +0 -0
- data/spec/support/Tools/PartCover-v2.3/xslt/Report By Assembly.xslt +0 -54
- data/spec/support/Tools/PartCover-v2.3/xslt/Report By Class.xslt +0 -52
- data/spec/support/Tools/SpecFlow/Antlr3.Runtime.dll +0 -0
- data/spec/support/Tools/SpecFlow/Interop.SHDocVw.dll +0 -0
- data/spec/support/Tools/SpecFlow/TechTalk.SpecFlow.Generator.dll +0 -0
- data/spec/support/Tools/SpecFlow/TechTalk.SpecFlow.Parser.dll +0 -0
- data/spec/support/Tools/SpecFlow/TechTalk.SpecFlow.Reporting.dll +0 -0
- data/spec/support/Tools/SpecFlow/TechTalk.SpecFlow.VsIntegration.dll +0 -0
- data/spec/support/Tools/SpecFlow/TechTalk.SpecFlow.dll +0 -0
- data/spec/support/Tools/SpecFlow/TechTalk.SpecFlow.targets +0 -58
- data/spec/support/Tools/SpecFlow/TechTalk.SpecFlow.tasks +0 -17
- data/spec/support/Tools/SpecFlow/changelog.txt +0 -50
- data/spec/support/Tools/SpecFlow/specflow.exe +0 -0
- data/spec/support/Tools/XUnit-v1.9/EULA.txt +0 -29
- data/spec/support/Tools/XUnit-v1.9/HTML.xslt +0 -126
- data/spec/support/Tools/XUnit-v1.9/NUnitXml.xslt +0 -121
- data/spec/support/Tools/XUnit-v1.9/xunit.console.clr4.exe +0 -0
- data/spec/support/Tools/XUnit-v1.9/xunit.console.clr4.exe.config +0 -21
- data/spec/support/Tools/XUnit-v1.9/xunit.console.clr4.x86.exe +0 -0
- data/spec/support/Tools/XUnit-v1.9/xunit.console.clr4.x86.exe.config +0 -21
- data/spec/support/Tools/XUnit-v1.9/xunit.console.exe +0 -0
- data/spec/support/Tools/XUnit-v1.9/xunit.console.exe.config +0 -21
- data/spec/support/Tools/XUnit-v1.9/xunit.console.x86.exe +0 -0
- data/spec/support/Tools/XUnit-v1.9/xunit.console.x86.exe.config +0 -21
- data/spec/support/Tools/XUnit-v1.9/xunit.dll +0 -0
- data/spec/support/Tools/XUnit-v1.9/xunit.dll.tdnet +0 -5
- data/spec/support/Tools/XUnit-v1.9/xunit.extensions.dll +0 -0
- data/spec/support/Tools/XUnit-v1.9/xunit.extensions.xml +0 -805
- data/spec/support/Tools/XUnit-v1.9/xunit.gui.clr4.exe +0 -0
- data/spec/support/Tools/XUnit-v1.9/xunit.gui.clr4.x86.exe +0 -0
- data/spec/support/Tools/XUnit-v1.9/xunit.gui.exe +0 -0
- data/spec/support/Tools/XUnit-v1.9/xunit.gui.x86.exe +0 -0
- data/spec/support/Tools/XUnit-v1.9/xunit.installer.exe +0 -0
- data/spec/support/Tools/XUnit-v1.9/xunit.runner.msbuild.dll +0 -0
- data/spec/support/Tools/XUnit-v1.9/xunit.runner.tdnet.dll +0 -0
- data/spec/support/Tools/XUnit-v1.9/xunit.runner.utility.dll +0 -0
- data/spec/support/Tools/XUnit-v1.9/xunit.runner.utility.xml +0 -1212
- data/spec/support/Tools/XUnit-v1.9/xunit.xml +0 -2604
- data/spec/support/assemblyinfotester.rb +0 -52
- data/spec/support/csc/File1.cs +0 -9
- data/spec/support/csc/File2.cs +0 -9
- data/spec/support/csc/output/ignorethis.txt +0 -1
- data/spec/support/ironruby_validator.rb +0 -26
- data/spec/support/msbuildtestdata.rb +0 -32
- data/spec/support/nanttestdata.rb +0 -33
- data/spec/support/ncoverconsoletestdata.rb +0 -20
- data/spec/support/ncoverreporttestdata.rb +0 -26
- data/spec/support/nokogiri_validator.rb +0 -15
- data/spec/support/outputtestdata.rb +0 -13
- data/spec/support/test.yml +0 -4
- data/spec/support/yamlconfig/msbuild.yml +0 -5
- data/spec/support/yamlconfig/yaml_autoconfig_test.yml +0 -1
- data/spec/support/zip/files/subfolder/sub file.txt +0 -1
- data/spec/support/zip/files/testfile.txt +0 -1
- data/spec/support/ziptestdata.rb +0 -13
@@ -1,241 +0,0 @@
|
|
1
|
-
<project name="NCoverCoverage" default="coverage" xmlns="http://nant.sf.net/schemas/nant.xsd">
|
2
|
-
|
3
|
-
<!-- TODO: Uncomment and add the full path to NCover.NAntTasks.dll if not in your path -->
|
4
|
-
<!-- TODO: Alternatively, remove this line if you have copied the .dll to your NAnt bin folder -->
|
5
|
-
<loadtasks assembly="NCover.NAntTasks.dll"/>
|
6
|
-
|
7
|
-
<!--
|
8
|
-
NOTE: This needs to be changed if you are profiling a 32 bit application on a 64 bit machine
|
9
|
-
NOTE: OR you are testing MSTest on a 64 Bit machine.
|
10
|
-
In that case the path would be C:\Program Files (x86)\NCover\ncover.console.exe
|
11
|
-
-->
|
12
|
-
<property name="ncoverPath" value="C:\Program Files\NCover\ncover.console.exe" />
|
13
|
-
<property name="msTestPath" value="C:\Program Files (x86)\Microsoft Visual Studio 9.0 \Common7\IDE\" />
|
14
|
-
<property name="nantTestRunner" value=".\Tools\nunit-console.exe" />
|
15
|
-
<property name="testDlls" value=".\bin\tests1.dll .\bin\tests2.dll .\bin\tests3.dll" />
|
16
|
-
|
17
|
-
<!--
|
18
|
-
Simple NCover setup to run NCover on an application which is then tested manually (or by an external program).
|
19
|
-
This task could be used by someone in the QA department running manual tests, or if the UI test runner requires
|
20
|
-
the program to be started before it (the UI test runner) is launched.
|
21
|
-
-->
|
22
|
-
<target name="RunManualTests">
|
23
|
-
<!-- Assumes that the program will be exercised manually, or has some default path of execution -->
|
24
|
-
<ncover program="${ncoverPath}"
|
25
|
-
testRunnerExe="protoype.exe"
|
26
|
-
testRunnerArgs="/clear /nologo"
|
27
|
-
coverageFile="coverage\10.2.2009.xml" />
|
28
|
-
</target>
|
29
|
-
|
30
|
-
<!--
|
31
|
-
NCover setup for running NUnit tests. Recommend use of the /noshadow flag, as NCover can have trouble
|
32
|
-
covering shadowcopied assemblies.
|
33
|
-
-->
|
34
|
-
<target name="RunNUnitTests">
|
35
|
-
<ncover program="${ncoverPath}"
|
36
|
-
testRunnerExe="${nantTestRunner}"
|
37
|
-
testRunnerArgs="${testDlls} /noshadow"
|
38
|
-
coverageFile="coverage\nunit-tests-coverage.xml" />
|
39
|
-
</target>
|
40
|
-
|
41
|
-
<!--
|
42
|
-
NCover setup for running MSTest (VisualStudio) tests. For NCover v2.1 and above, recommend use of
|
43
|
-
CoverChildProcess="VSTestHost.exe" option, as it provides the greatest compatability with MSTest tests.
|
44
|
-
If the CoverChildProcess option is not used, then "/noisolation" should be added to the testRunnerArgs
|
45
|
-
option. However, if "/noisolation" is used, any test using the "DeploymentItem" attribute will break.
|
46
|
-
-->
|
47
|
-
<target name="RunMSTestTests">
|
48
|
-
<ncover program="${ncoverPath}"
|
49
|
-
testRunnerExe="${msTestPath}mstest.exe"
|
50
|
-
testRunnerArgs="/testcontainer:Debug\unittests.dll"
|
51
|
-
coverChildProcess="VSTestHost.exe" />
|
52
|
-
</target>
|
53
|
-
|
54
|
-
<!--
|
55
|
-
NCover setup for generating trend data from coverage information. Trend information is more compactly stored
|
56
|
-
than coverage information, but does not store source file links. Trend data works hand-in-hand with coverage
|
57
|
-
information to show coverage values over time.
|
58
|
-
-->
|
59
|
-
<target name="CreateTrendsAlongWithCoverage">
|
60
|
-
<ncover program="${ncoverPath}"
|
61
|
-
testRunnerExe="${nantTestRunner}"
|
62
|
-
testRunnerArgs="${testDlls} /noshadow"
|
63
|
-
appendTrendTo=".\reports\project.trend" />
|
64
|
-
</target>
|
65
|
-
|
66
|
-
<!--
|
67
|
-
Using the BuildId option, coverage data and trend data can can be associated with a particular build number.
|
68
|
-
-->
|
69
|
-
<target name="AssociateTrendInstancesWithBuildID">
|
70
|
-
<ncover program="${ncoverPath}"
|
71
|
-
testRunnerExe="${nantTestRunner}"
|
72
|
-
testRunnerArgs="${testDlls} /noshadow"
|
73
|
-
appendTrendTo=".\reports\project.trend"
|
74
|
-
buildId="10.2.3.103917"/>
|
75
|
-
</target>
|
76
|
-
|
77
|
-
<!--
|
78
|
-
By default, NCover reports on all coverage types (permitted by the license). If you're not interested in
|
79
|
-
all of the coverage types, you can restrict the types reported on using the "CoverageType" option.
|
80
|
-
-->
|
81
|
-
<target name="SpecifyDesiredCoverageTypes">
|
82
|
-
<ncover program="${ncoverPath}"
|
83
|
-
testRunnerExe="${nantTestRunner}"
|
84
|
-
testRunnerArgs="${testDlls} /noshadow"
|
85
|
-
coverageType="Symbol | CyclomaticComplexity" />
|
86
|
-
</target>
|
87
|
-
|
88
|
-
<!--
|
89
|
-
In lieu of using the reporting tool, NCover can generate an HTML report before it exits.
|
90
|
-
-->
|
91
|
-
<target name="CreateHtmlReportFromCoverage">
|
92
|
-
<ncover program="${ncoverPath}"
|
93
|
-
testRunnerExe="${nantTestRunner}"
|
94
|
-
testRunnerArgs="${testDlls} /noshadow"
|
95
|
-
htmlReportDir=".\reports\" />
|
96
|
-
</target>
|
97
|
-
|
98
|
-
<!--
|
99
|
-
The "Projectname" option changes the name of the project that appears on the HTML report.
|
100
|
-
-->
|
101
|
-
<target name="SetProjectnameOnHtmlReport">
|
102
|
-
<ncover program="${ncoverPath}"
|
103
|
-
testRunnerExe="${nantTestRunner}"
|
104
|
-
testRunnerArgs="${testDlls} /noshadow"
|
105
|
-
Projectname="NHibernate v3.0"
|
106
|
-
htmlReportDir=".\reports\v3\" />
|
107
|
-
|
108
|
-
</target>
|
109
|
-
|
110
|
-
<!--
|
111
|
-
Log files are useful promarily when interacting with NCover support.
|
112
|
-
-->
|
113
|
-
<target name="CreateALogFile">
|
114
|
-
<ncover program="${ncoverPath}"
|
115
|
-
testRunnerExe="${nantTestRunner}"
|
116
|
-
testRunnerArgs="${testDlls} /noshadow"
|
117
|
-
logFile="coverage.log"
|
118
|
-
logLevel="Normal" />
|
119
|
-
</target>
|
120
|
-
|
121
|
-
<!--
|
122
|
-
Often, NCover support will ask for a verbose log file, even though NCover will crash when generating
|
123
|
-
a verbose log on x64 machines.
|
124
|
-
-->
|
125
|
-
<target name="CreateAVerboseLogFile">
|
126
|
-
<ncover program="${ncoverPath}"
|
127
|
-
testRunnerExe="${nantTestRunner}"
|
128
|
-
testRunnerArgs="${testDlls} /noshadow"
|
129
|
-
logFile="coverage.log"
|
130
|
-
logLevel="Verbose" />
|
131
|
-
</target>
|
132
|
-
|
133
|
-
<!--
|
134
|
-
Sample task for setting up coverage for a webservice or an ASP.NEt application. In both cases,
|
135
|
-
the test runner would have to be launched externally.
|
136
|
-
-->
|
137
|
-
<target name="CoverAWebserviceOrAnASP.NETApp">
|
138
|
-
<ncover program="${ncoverPath}"
|
139
|
-
profileIIS="true" />
|
140
|
-
</target>
|
141
|
-
|
142
|
-
<!--
|
143
|
-
Sample task for covering a Windows or WCF service exposed as a Windows service. Note that the
|
144
|
-
test runner would have to be launched externally.
|
145
|
-
-->
|
146
|
-
<target name="CoverAWindowsService">
|
147
|
-
<ncover program="${ncoverPath}"
|
148
|
-
profileService="MyInstalledServicename" />
|
149
|
-
</target>
|
150
|
-
|
151
|
-
<!--
|
152
|
-
By default, NCover keeps covering a service (or IIS) until it is explicitly told to stop.
|
153
|
-
The "ServiceTimeout" option tells NCover to stop covering the service (or IIS) and report
|
154
|
-
coverage data after the specified number of seconds have elapsed.
|
155
|
-
-->
|
156
|
-
<target name="TellingNCoverToStopAServiceAfterACertainElapsedTime">
|
157
|
-
<ncover program="${ncoverPath}"
|
158
|
-
profileService="MyInstalledServicename"
|
159
|
-
serviceTimeout="540"/>
|
160
|
-
</target>
|
161
|
-
|
162
|
-
<!--
|
163
|
-
Far more useful for running automated tests, telling NCover to cover both an executable and a service (or IIS)
|
164
|
-
forces it to run in a special mode. In this mode, NCover gathers coverage from the service (or IIS) and shuts
|
165
|
-
the service (or IIS) down once the executable exits.
|
166
|
-
-->
|
167
|
-
<target name="StoppingAServiceAfterAnExeExits">
|
168
|
-
<ncover program="${ncoverPath}"
|
169
|
-
testRunnerExe="${nantTestRunner}"
|
170
|
-
testRunnerArgs="${testDlls} /noshadow"
|
171
|
-
profileService="MyInstalledServicename" />
|
172
|
-
</target>
|
173
|
-
|
174
|
-
<!--
|
175
|
-
NCover affects application startup time far more than it affects run-time. By default, NCover
|
176
|
-
waits one minute to recieve a "started" message from the application it covers. However,
|
177
|
-
larger applications can take longer than a minute to startup with NCover attached.
|
178
|
-
The "WaitForAppLoad" option tells NCover to wait the given number of minutes before deciding
|
179
|
-
that the application is a no-show.
|
180
|
-
-->
|
181
|
-
<target name="CoveringAServiceThatHasALongStartupTime">
|
182
|
-
<ncover program="${ncoverPath}"
|
183
|
-
profileService="MyInstalledServicename"
|
184
|
-
waitForAppLoad="10" />
|
185
|
-
</target>
|
186
|
-
|
187
|
-
<target name="UsingTypemockWithNCover">
|
188
|
-
<!-- Trouble using Typemock with NCover should be directed to the Typemock team first -->
|
189
|
-
<!-- <TypeMockStart ProfilerLaunchedFirst="true" /> -->
|
190
|
-
|
191
|
-
<ncover program="${ncoverPath}"
|
192
|
-
testRunnerExe="${nantTestRunner}"
|
193
|
-
testRunnerArgs="${testDlls} /noshadow" />
|
194
|
-
|
195
|
-
<!-- DO NOT USE the RegisterProfiler="true" option -->
|
196
|
-
<!-- <TypeMockStop ProfilerLaunchedFirst="true" /> -->
|
197
|
-
</target>
|
198
|
-
|
199
|
-
<target name="UsingSymbolsFromASymbolServer">
|
200
|
-
<!--
|
201
|
-
Need to set the "_NT_SYMBOL_PATH" environment variable for NCover to find the symbols correctly.
|
202
|
-
If NCover is having trouble finding the symbol server, setting "_NT_SYMBOL_PATH" to the folder
|
203
|
-
with PDB files and telling NCover to search for symbols on a symbolserver will usually solve the problem.
|
204
|
-
-->
|
205
|
-
<ncover program="${ncoverPath}"
|
206
|
-
testRunnerExe="${nantTestRunner}"
|
207
|
-
testRunnerArgs="${testDlls} /noshadow"
|
208
|
-
symbolSearchLocations="SymbolServer"/>
|
209
|
-
</target>
|
210
|
-
|
211
|
-
|
212
|
-
<!-- Exclusion / Inclusion options -->
|
213
|
-
<!--
|
214
|
-
Quick breakdown of what options are available
|
215
|
-
: Exclusion : Inclusion
|
216
|
-
====================================
|
217
|
-
Assembly : yes : yes
|
218
|
-
Type : yes : yes
|
219
|
-
Method : yes : NO
|
220
|
-
Attribute : yes : yes
|
221
|
-
Source File : yes : yes
|
222
|
-
|
223
|
-
By default, everything in every assembly loaded is included.
|
224
|
-
Inclusions are always applied before exclusions (per type).
|
225
|
-
|
226
|
-
-->
|
227
|
-
<target name="">
|
228
|
-
<ncover program="${ncoverPath}"
|
229
|
-
testRunnerExe="${nantTestRunner}"
|
230
|
-
testRunnerArgs="${testDlls} /noshadow"
|
231
|
-
includeAssemblies=".*tests;DAL\.tests.internal"/>
|
232
|
-
</target>
|
233
|
-
|
234
|
-
<target name="">
|
235
|
-
<ncover program="${ncoverPath}"
|
236
|
-
testRunnerExe="${nantTestRunner}"
|
237
|
-
testRunnerArgs="${testDlls} /noshadow"
|
238
|
-
excludeAssemblies=".*vendorsupplied.*;.*tests"/>
|
239
|
-
</target>
|
240
|
-
|
241
|
-
</project>
|
@@ -1,218 +0,0 @@
|
|
1
|
-
<project name="NCoverReporting" default="coverage" xmlns="http://nant.sf.net/schemas/nant.xsd">
|
2
|
-
|
3
|
-
<!-- TODO: Uncomment and add the full path to NCover.NAntTasks.dll if not in your path -->
|
4
|
-
<!-- TODO: Alternatively, remove this line if you have copied the .dll to your NAnt bin folder -->
|
5
|
-
<!-- <loadtasks assembly="NCover.NAntTasks.dll"/> -->
|
6
|
-
|
7
|
-
<target name="simplemerge" description="Collate several coverage data files into a single file">
|
8
|
-
<ncoverreporting program="C:\Program Files\NCover\NCover.Reporting.exe"
|
9
|
-
mergeFileName="C:\OEM\project\merged.xml" >
|
10
|
-
|
11
|
-
<coverageDataPaths>
|
12
|
-
<include name="coverage\company.DAL.coverage.xml" />
|
13
|
-
<include name="coverage\company.UI.coverage.xml" />
|
14
|
-
<include name="coverage\company.business.coverage.xml" />
|
15
|
-
<include name="coverage\company.OEM.coverage.xml" />
|
16
|
-
</coverageDataPaths>
|
17
|
-
</ncoverreporting>
|
18
|
-
</target>
|
19
|
-
|
20
|
-
|
21
|
-
<target name="createTrends" description="Add data from several coverage files to a trend file">
|
22
|
-
<ncoverreporting program="C:\Program Files\NCover\NCover.Reporting.exe"
|
23
|
-
coverageTrendPath="C:\OEM\oemtrends.trend" >
|
24
|
-
|
25
|
-
<coverageDataPaths>
|
26
|
-
<!-- the coverage files will be merged before the (merged) coverage data is added to the trend file -->
|
27
|
-
<include name="coverage\*.xml" />
|
28
|
-
</coverageDataPaths>
|
29
|
-
</ncoverreporting>
|
30
|
-
</target>
|
31
|
-
|
32
|
-
<target name="createHTMLReport" description="Create a full HTML report from coverage data">
|
33
|
-
<ncoverreporting program="C:\Program Files\NCover\NCover.Reporting.exe"
|
34
|
-
outputPath="reports\html\10.2.2008\"
|
35
|
-
projectName="company project"
|
36
|
-
sortBy="Name" >
|
37
|
-
|
38
|
-
<coverageDataPaths>
|
39
|
-
<include name="coverage\*.xml" />
|
40
|
-
</coverageDataPaths>
|
41
|
-
|
42
|
-
<reports>
|
43
|
-
<report format="Html" reportType="FullCoverageReport" />
|
44
|
-
</reports>
|
45
|
-
</ncoverreporting>
|
46
|
-
</target>
|
47
|
-
|
48
|
-
<target name="createSummaryReport" description="Create a summary (overview) report from coverage data">
|
49
|
-
<ncoverreporting program="C:\Program Files\NCover\NCover.Reporting.exe"
|
50
|
-
outputPath="reports\html\summary\10.2.2008.html"
|
51
|
-
projectName="my project" >
|
52
|
-
|
53
|
-
<coverageDataPaths>
|
54
|
-
<include name="coverage.xml" />
|
55
|
-
</coverageDataPaths>
|
56
|
-
|
57
|
-
<reports>
|
58
|
-
<report format="Html" reportType="Summary" />
|
59
|
-
</reports>
|
60
|
-
</ncoverreporting>
|
61
|
-
</target>
|
62
|
-
|
63
|
-
<target name="createXMLReportForCC.NET" description="Create an xml report for viewing in CC.NET or another CI tool">
|
64
|
-
<ncoverreporting program="C:\Program Files\NCover\NCover.Reporting.exe"
|
65
|
-
projectName="my project"
|
66
|
-
sortBy="Name"
|
67
|
-
outputPath="reports\xml\ci\10.2.2008.xml" >
|
68
|
-
|
69
|
-
<coverageDataPaths>
|
70
|
-
<include name="coverage.xml" />
|
71
|
-
</coverageDataPaths>
|
72
|
-
|
73
|
-
<reports>
|
74
|
-
<report format="Xml" reportType="SymbolModule" />
|
75
|
-
</reports>
|
76
|
-
</ncoverreporting>
|
77
|
-
</target>
|
78
|
-
|
79
|
-
<target name="reportOnlyUncoveredItems" description="Create a report that only shows the top 50 uncovered items">
|
80
|
-
<ncoverreporting program="C:\Program Files\NCover\NCover.Reporting.exe"
|
81
|
-
hide="HideFullyCovered"
|
82
|
-
outputPath="reports\html\10.2.2008"
|
83
|
-
maxTopUncoveredToReport="50"
|
84
|
-
projectName="my project"
|
85
|
-
sortBy="Name" >
|
86
|
-
|
87
|
-
<coverageDataPaths>
|
88
|
-
<include name="coverage\*.xml" />
|
89
|
-
</coverageDataPaths>
|
90
|
-
|
91
|
-
<reports>
|
92
|
-
<report format="Html" reportType="FullCoverageReport" />
|
93
|
-
</reports>
|
94
|
-
</ncoverreporting>
|
95
|
-
</target>
|
96
|
-
|
97
|
-
<target name="dontReportTestAssemblies" description="Create a report from coverage data, ignoring coverage on the test assemblies">
|
98
|
-
<ncoverreporting program="C:\Program Files\NCover\NCover.Reporting.exe"
|
99
|
-
outputPath="reports\html\project\"
|
100
|
-
projectName="my project"
|
101
|
-
sortBy="Name" >
|
102
|
-
|
103
|
-
<coverageDataPaths>
|
104
|
-
<include name="coverage\*.xml" />
|
105
|
-
</coverageDataPaths>
|
106
|
-
|
107
|
-
<coverageFilters>
|
108
|
-
<filter pattern="project.unit.test"
|
109
|
-
type="Assembly" />
|
110
|
-
<filter pattern="project.functional.test"
|
111
|
-
type="Assembly" />
|
112
|
-
<filter pattern="project.*.test"
|
113
|
-
type="Assembly" />
|
114
|
-
</coverageFilters>
|
115
|
-
|
116
|
-
<reports>
|
117
|
-
<report format="Html" reportType="FullCoverageReport" />
|
118
|
-
</reports>
|
119
|
-
</ncoverreporting>
|
120
|
-
</target>
|
121
|
-
|
122
|
-
<target name="onlyReportDALAssemblies" description="Create a report from coverage data, ignoring assemblies that are not part of the Data Access Layer">
|
123
|
-
<ncoverreporting program="C:\Program Files\NCover\NCover.Reporting.exe"
|
124
|
-
outputPath="reports\html\nonDAL\"
|
125
|
-
projectName="my project"
|
126
|
-
sortBy="Name" >
|
127
|
-
|
128
|
-
<coverageDataPaths>
|
129
|
-
<include name="coverage.xml" />
|
130
|
-
</coverageDataPaths>
|
131
|
-
|
132
|
-
<coverageFilters>
|
133
|
-
<filter pattern="project*DAL*"
|
134
|
-
isInclude="true"
|
135
|
-
type="Assembly"
|
136
|
-
isRegex="true" />
|
137
|
-
|
138
|
-
</coverageFilters>
|
139
|
-
<reports>
|
140
|
-
<report format="Html" reportType="FullCoverageReport" />
|
141
|
-
</reports>
|
142
|
-
</ncoverreporting>
|
143
|
-
</target>
|
144
|
-
|
145
|
-
<target name="failBuildIfCoverageNotSufficient" description="Enforce coverage standards by failing the build if certain coverage percentages are not met">
|
146
|
-
<ncoverreporting program="C:\Program Files\NCover\NCover.Reporting.exe"
|
147
|
-
maxFailedToShow="0">
|
148
|
-
|
149
|
-
<coverageDataPaths>
|
150
|
-
<include name="coverage\*.xml" />
|
151
|
-
</coverageDataPaths>
|
152
|
-
|
153
|
-
<minimumCoverage>
|
154
|
-
<!-- Fail the build if every method hasn't been executed -->
|
155
|
-
<threshold coverageMetric="MethodCoverage"
|
156
|
-
type="View"
|
157
|
-
value="100" />
|
158
|
-
<!-- Fail the build if the branch coverage of any class is below 80.5% -->
|
159
|
-
<threshold coverageMetric="BranchCoverage"
|
160
|
-
type="Class"
|
161
|
-
value="80.5" />
|
162
|
-
<!-- Fail the build if the maximum Cyclomatic Complexity of any class in the "Project.Internal.Critical" namespace is above 60 -->
|
163
|
-
<threshold coverageMetric="CyclomaticComplexity"
|
164
|
-
pattern="Project.Internal.Critical"
|
165
|
-
type="Namespace"
|
166
|
-
value="60" />
|
167
|
-
</minimumCoverage>
|
168
|
-
</ncoverreporting>
|
169
|
-
</target>
|
170
|
-
|
171
|
-
<target name="setSatisfactoryCoverageButDon'tFailBuildIfNotMet" description="Set satisfactory coverage percentages to control what shows up uncovered, but don't fail the build if the percentage is not met">
|
172
|
-
<ncoverreporting program="C:\Program Files\NCover\NCover.Reporting.exe"
|
173
|
-
hide="None"
|
174
|
-
outputPath="reports\html\"
|
175
|
-
projectName="my project" >
|
176
|
-
|
177
|
-
<coverageDataPaths>
|
178
|
-
<include name="coverage.xml" />
|
179
|
-
</coverageDataPaths>
|
180
|
-
|
181
|
-
<satisfactoryCoverage>
|
182
|
-
<!-- Set overall satisfactory symbol coverage for the project at 95% -->
|
183
|
-
<threshold coverageMetric="SymbolCoverage"
|
184
|
-
value="95.0" />
|
185
|
-
<!-- 70% of the methods in every document must be executed for the document to be satisfactorily covered-->
|
186
|
-
<threshold coverageMetric="MethodCoverage"
|
187
|
-
type="Document"
|
188
|
-
value="70" />
|
189
|
-
<!-- Methods must have 75% branch coverage to be satisfactorily covered-->
|
190
|
-
<threshold coverageMetric="BranchCoverage"
|
191
|
-
type="Method"
|
192
|
-
value="75" />
|
193
|
-
</satisfactoryCoverage>
|
194
|
-
|
195
|
-
<reports>
|
196
|
-
<report reportType="FullCoverageReport" format="Html" />
|
197
|
-
</reports>
|
198
|
-
</ncoverreporting>
|
199
|
-
</target>
|
200
|
-
|
201
|
-
<target name="exampleUsingOptionsParamsToPassDataToAReport">
|
202
|
-
|
203
|
-
<ncoverreporting program="${reportingExe}">
|
204
|
-
<coverageDataPaths>
|
205
|
-
<include name="coverage*.xml" />
|
206
|
-
</coverageDataPaths>
|
207
|
-
<reports>
|
208
|
-
<report reportType="SymbolModule" format="Xml" outputPath="${outputPath}\paramstest.xml">
|
209
|
-
<params>
|
210
|
-
<param name="name1" value="value1" />
|
211
|
-
<param name="name2" />
|
212
|
-
</params>
|
213
|
-
</report>
|
214
|
-
</reports>
|
215
|
-
</ncoverreporting>
|
216
|
-
|
217
|
-
</target>
|
218
|
-
</project>
|