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