├── .gitattributes ├── .gitignore ├── Credits.txt ├── README.markdown ├── Should.nuspec ├── ShouldFluent.nuspec ├── click_to_build.bat ├── lib ├── MOQ │ ├── Moq.dll │ └── Moq.xml ├── Machine.Specifications.0.5.6.0 │ ├── Machine.Specifications.0.5.6.0.nupkg │ ├── lib │ │ ├── net20 │ │ │ ├── Machine.Specifications.TDNetRunner.dll │ │ │ ├── Machine.Specifications.dll │ │ │ └── Machine.Specifications.dll.tdnet │ │ └── net40 │ │ │ ├── Machine.Specifications.Clr4.dll │ │ │ ├── Machine.Specifications.TDNetRunner.dll │ │ │ ├── Machine.Specifications.dll │ │ │ └── Machine.Specifications.dll.tdnet │ └── tools │ │ ├── CommandLine.dll │ │ ├── CommandLine.xml │ │ ├── InstallResharperRunner.4.1.bat │ │ ├── InstallResharperRunner.4.5.bat │ │ ├── InstallResharperRunner.5.0 - VS2008.bat │ │ ├── InstallResharperRunner.5.0 - VS2010.bat │ │ ├── InstallResharperRunner.5.1 - VS2008.bat │ │ ├── InstallResharperRunner.5.1 - VS2010.bat │ │ ├── InstallResharperRunner.6.0 - VS2008.bat │ │ ├── InstallResharperRunner.6.0 - VS2010.bat │ │ ├── InstallResharperRunner.6.1 - VS2008.bat │ │ ├── InstallResharperRunner.6.1 - VS2010.bat │ │ ├── InstallResharperRunner.7.0 - VS2011.bat │ │ ├── InstallTDNetRunner.bat │ │ ├── InstallTDNetRunnerSilent.bat │ │ ├── License.txt │ │ ├── Machine.Specifications.Clr4.dll │ │ ├── Machine.Specifications.GallioAdapter.dll │ │ ├── Machine.Specifications.GallioAdapter.plugin │ │ ├── Machine.Specifications.ReSharperRunner.4.1.dll │ │ ├── Machine.Specifications.ReSharperRunner.4.5.dll │ │ ├── Machine.Specifications.ReSharperRunner.5.0.dll │ │ ├── Machine.Specifications.ReSharperRunner.5.1.dll │ │ ├── Machine.Specifications.ReSharperRunner.6.0.dll │ │ ├── Machine.Specifications.ReSharperRunner.6.1.dll │ │ ├── Machine.Specifications.ReSharperRunner.7.0.dll │ │ ├── Machine.Specifications.Reporting.Templates.dll │ │ ├── Machine.Specifications.Reporting.dll │ │ ├── Machine.Specifications.SeleniumSupport.dll │ │ ├── Machine.Specifications.TDNetRunner.dll │ │ ├── Machine.Specifications.WatinSupport.dll │ │ ├── Machine.Specifications.WebDriverSupport.dll │ │ ├── Machine.Specifications.dll │ │ ├── Machine.Specifications.dll.tdnet │ │ ├── Spark.dll │ │ ├── TestDriven.Framework.dll │ │ ├── install.ps1 │ │ ├── mspec-clr4.exe │ │ ├── mspec-clr4.exe.config │ │ ├── mspec-x86-clr4.exe │ │ ├── mspec-x86-clr4.exe.config │ │ ├── mspec-x86.exe │ │ └── mspec.exe ├── NUnit.2.6.0.12054 │ ├── NUnit.2.6.0.12054.nupkg │ ├── lib │ │ ├── nunit.framework.dll │ │ └── nunit.framework.xml │ └── license.txt ├── repositories.config └── xunit.net │ ├── HTML.xslt │ ├── NUnitXml.xslt │ ├── xunit.console.exe │ ├── xunit.console.exe.config │ ├── xunit.console.x86.exe │ ├── xunit.console.x86.exe.config │ ├── xunit.dll │ ├── xunit.dll.tdnet │ ├── xunit.extensions.dll │ ├── xunit.extensions.xml │ ├── xunit.gui.exe │ ├── xunit.gui.x86.exe │ ├── xunit.installer.exe │ ├── xunit.runner.msbuild.dll │ ├── xunit.runner.resharper.dll │ ├── xunit.runner.tdnet.dll │ ├── xunit.runner.utility.dll │ ├── xunit.runner.utility.xml │ ├── xunit.tests.msbuild │ └── xunit.xml ├── license.txt ├── nant.build ├── open.bat ├── src ├── CommonAssemblyInfo.cs ├── Should.Core │ ├── Assertions │ │ ├── Assert.cs │ │ ├── Assert.cs.orig │ │ ├── AssertComparer.cs │ │ ├── AssertEqualityComparer.cs │ │ ├── Assertions.cs │ │ ├── EnumerableEqualityComparer.cs │ │ └── Record.cs │ ├── DatePrecision.cs │ ├── Exceptions │ │ ├── AssertActualExpectedException.cs │ │ ├── AssertException.cs │ │ ├── ComparisonException.cs │ │ ├── ContainsException.cs │ │ ├── DoesNotContainException.cs │ │ ├── DoesNotThrowException.cs │ │ ├── EmptyException.cs │ │ ├── EqualException.cs │ │ ├── FalseException.cs │ │ ├── GreaterThanException.cs │ │ ├── GreaterThanOrEqualException.cs │ │ ├── InRangeException.cs │ │ ├── IsAssignableFromException.cs │ │ ├── IsNotTypeException.cs │ │ ├── IsTypeException.cs │ │ ├── LessThanException.cs │ │ ├── LessThanOrEqualException.cs │ │ ├── NotEmptyException.cs │ │ ├── NotEqualException.cs │ │ ├── NotInRangeException.cs │ │ ├── NotNullException.cs │ │ ├── NotSameException.cs │ │ ├── NullException.cs │ │ ├── ParameterCountMismatchException.cs │ │ ├── SameException.cs │ │ ├── SingleException.cs │ │ ├── StartsWithException.cs │ │ ├── ThrowsException.cs │ │ ├── TimeoutException.cs │ │ ├── TraceAssertException.cs │ │ └── TrueException.cs │ ├── Should.Core.csproj │ └── Should.Core.csproj.orig ├── Should.Fluent.UnitTests │ ├── BeBoolSpecs.cs │ ├── BeDateTimeSpecs.cs │ ├── BeDateTimeSpecs.cs.orig │ ├── BeDoubleSpecs.cs │ ├── BeEnumerableSpecs.cs │ ├── BeGuidSpecs.cs │ ├── BeGuidSpecs.cs.orig │ ├── BeMethodCallExpressionSpecs.cs │ ├── BeNullableBoolSpecs.cs │ ├── BeNullableDateTimeSpecs.cs │ ├── BeSpecs.cs │ ├── BeStringSpecs.cs │ ├── Behaviors.cs │ ├── ContainsSpecs.cs │ ├── CountSpecs.cs │ ├── CountSpecs.cs.orig │ ├── ExtensilbitySpecs.cs │ ├── IntegrationTests │ │ ├── GreaterThanSpecs.cs │ │ ├── LessThanSpecs.cs │ │ └── TestBase.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Should.Fluent.UnitTests.csproj │ ├── Should.Fluent.UnitTests.csproj.orig │ ├── ShouldCoreProviderSpecs.cs │ ├── ShouldCoreProviderSpecs.cs.orig │ ├── ShouldDateTimeSpecs.cs │ ├── ShouldDictionarySpecs.cs │ ├── ShouldDoubleSpecs.cs │ ├── ShouldExtensionsSpecs.cs │ ├── ShouldSpecs.cs │ ├── TestBase.cs │ ├── packages.config │ └── result_should_be_target.cs ├── Should.Fluent │ ├── BeBoolExtensions.cs │ ├── BeCollectionExtensions.cs │ ├── BeDateTimeExtensions.cs │ ├── BeDoubleExtensions.cs │ ├── BeEnumerableExtensions.cs │ ├── BeGuidExtensions.cs │ ├── BeNullableBoolExtensions.cs │ ├── BeNullableDateTimeExtensions.cs │ ├── BeStringExtensions.cs │ ├── IAssertProvider.cs │ ├── IAssertProvider.cs.orig │ ├── Model │ │ ├── Be.cs │ │ ├── BeBase.cs │ │ ├── BeBool.cs │ │ ├── BeCollection.cs │ │ ├── BeDateTime.cs │ │ ├── BeDecimal.cs │ │ ├── BeEnumerable.cs │ │ ├── BeGuid.cs │ │ ├── BeMethodCallExpression.cs │ │ ├── BeNullableBool.cs │ │ ├── BeNullableDateTime.cs │ │ ├── BeString.cs │ │ ├── Check.cs │ │ ├── Contain.cs │ │ ├── ContainQueryable.cs │ │ ├── Count.cs │ │ ├── IBe.cs │ │ ├── IShould.cs │ │ ├── Should.cs │ │ ├── ShouldBase.cs │ │ ├── ShouldCollection.cs │ │ ├── ShouldDateTime.cs │ │ ├── ShouldDictionary.cs │ │ ├── ShouldDouble.cs │ │ ├── ShouldEnumerable.cs │ │ └── ShouldString.cs │ ├── Should.Fluent.csproj │ ├── Should.Fluent.csproj.orig │ ├── ShouldCoreAssertProvider.cs │ ├── ShouldCoreAssertProvider.cs.orig │ ├── ShouldDateTimeExtensions.cs │ ├── ShouldDoubleExtensions.cs │ ├── ShouldExtensions.cs │ ├── ShouldExtensions.cs.orig │ └── ShouldStringExtensions.cs ├── Should.sln ├── Should.sln.cache ├── nuget.config ├── should.Facts │ ├── ActionAssertionExtension_Facts.cs │ ├── Core │ │ ├── AssertActualExpectedExceptionTests.cs │ │ ├── AssertExceptionTests.cs │ │ ├── ComparisonTests.cs │ │ ├── ContainsTests.cs │ │ ├── DoesNotContainTests.cs │ │ ├── DoesNotThrowTests.cs │ │ ├── EmptyTests.cs │ │ ├── FalseTests.cs │ │ ├── GreaterThanOrEqualTests.cs │ │ ├── GreaterThanTests.cs │ │ ├── InRangeTests.cs │ │ ├── IsAssignableFromTests.cs │ │ ├── IsNotTypeTests.cs │ │ ├── IsTypeTests.cs │ │ ├── LessThanOrEqualTests.cs │ │ ├── LessThanTests.cs │ │ ├── NotEmptyTests.cs │ │ ├── NotEqualTests.cs │ │ ├── NotInRangeTests.cs │ │ ├── NotNullTests.cs │ │ ├── NotSameTests.cs │ │ ├── NullTests.cs │ │ ├── RecordTests.cs │ │ ├── SameTests.cs │ │ ├── SerializationTests.cs │ │ ├── SingleFacts.cs │ │ └── TrueTests.cs │ ├── DateAssertionExtension_Facts.cs │ ├── DoubleAssertionExtension_Facts.cs │ ├── EqualTests.cs │ ├── ObjectAssertionExtension_Facts.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Should.Facts.csproj │ ├── Should.Facts.csproj.orig │ ├── StringAssertionExtensions_Facts.cs │ ├── ThrowsTests.cs │ └── TraceAssertTests.cs └── should │ ├── ActionAssertionExtensions.cs │ ├── BooleanAssertionExtensions.cs │ ├── CollectionAssertionExtensions.cs │ ├── DateAssertionExtensions.cs │ ├── DoubleAssertionExtensions.cs │ ├── ObjectAssertExtensions.cs │ ├── Should.csproj │ ├── Should.csproj.orig │ └── StringAssertionExtensions.cs └── tools ├── ILMerge └── ILMerge.exe ├── Nant ├── Microsoft.SqlServer.BatchParser.dll ├── Microsoft.SqlServer.BatchParserClient.dll ├── Microsoft.SqlServer.ConnectionInfo.dll ├── Microsoft.SqlServer.Management.Sdk.Sfc.dll ├── Microsoft.SqlServer.Replication.dll ├── Microsoft.SqlServer.Smo.dll ├── Microsoft.SqlServer.SqlClrProvider.dll ├── NAnt.CompressionTasks.dll ├── NAnt.CompressionTasks.xml ├── NAnt.Core.dll ├── NAnt.Core.xml ├── NAnt.DotNetTasks.dll ├── NAnt.DotNetTasks.xml ├── NAnt.MSNetTasks.dll ├── NAnt.MSNetTasks.xml ├── NAnt.NUnit.dll ├── NAnt.NUnit.xml ├── NAnt.NUnit1Tasks.dll ├── NAnt.NUnit1Tasks.xml ├── NAnt.NUnit2Tasks.dll ├── NAnt.NUnit2Tasks.xml ├── NAnt.SourceControlTasks.dll ├── NAnt.SourceControlTasks.xml ├── NAnt.VSNetTasks.dll ├── NAnt.VSNetTasks.xml ├── NAnt.VisualCppTasks.dll ├── NAnt.VisualCppTasks.xml ├── NAnt.Win32Tasks.dll ├── NAnt.Win32Tasks.xml ├── NAnt.exe ├── NAnt.exe.config ├── NAnt.xml ├── extensions │ └── common │ │ └── 2.0 │ │ ├── NAnt.MSBuild.dll │ │ └── NAnt.MSBuild.xml ├── lib │ ├── common │ │ └── neutral │ │ │ ├── ICSharpCode.SharpCvsLib.Console.dll │ │ │ ├── ICSharpCode.SharpCvsLib.dll │ │ │ ├── ICSharpCode.SharpZipLib.dll │ │ │ └── NUnitCore.dll │ └── net │ │ ├── 1.0 │ │ ├── NDoc.Core.dll │ │ ├── NDoc.Documenter.Msdn.dll │ │ ├── NDoc.ExtendedUI.dll │ │ ├── nunit.core.dll │ │ ├── nunit.framework.dll │ │ └── nunit.util.dll │ │ ├── 1.1 │ │ ├── NDoc.Core.dll │ │ ├── NDoc.Documenter.Msdn.dll │ │ ├── NDoc.ExtendedUI.dll │ │ ├── nunit.core.dll │ │ ├── nunit.framework.dll │ │ └── nunit.util.dll │ │ └── 2.0 │ │ ├── NDoc.Core.dll │ │ ├── NDoc.Documenter.Msdn.dll │ │ ├── NDoc.ExtendedUI.dll │ │ ├── nunit.core.dll │ │ ├── nunit.framework.dll │ │ └── nunit.util.dll ├── log4net.dll ├── nant.xsd └── scvs.exe └── NuPack.exe /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/.gitignore -------------------------------------------------------------------------------- /Credits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/Credits.txt -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/README.markdown -------------------------------------------------------------------------------- /Should.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/Should.nuspec -------------------------------------------------------------------------------- /ShouldFluent.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/ShouldFluent.nuspec -------------------------------------------------------------------------------- /click_to_build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/click_to_build.bat -------------------------------------------------------------------------------- /lib/MOQ/Moq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/lib/MOQ/Moq.dll -------------------------------------------------------------------------------- /lib/MOQ/Moq.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/lib/MOQ/Moq.xml -------------------------------------------------------------------------------- /lib/Machine.Specifications.0.5.6.0/Machine.Specifications.0.5.6.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/lib/Machine.Specifications.0.5.6.0/Machine.Specifications.0.5.6.0.nupkg -------------------------------------------------------------------------------- /lib/Machine.Specifications.0.5.6.0/lib/net20/Machine.Specifications.TDNetRunner.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/lib/Machine.Specifications.0.5.6.0/lib/net20/Machine.Specifications.TDNetRunner.dll -------------------------------------------------------------------------------- /lib/Machine.Specifications.0.5.6.0/lib/net20/Machine.Specifications.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/lib/Machine.Specifications.0.5.6.0/lib/net20/Machine.Specifications.dll -------------------------------------------------------------------------------- /lib/Machine.Specifications.0.5.6.0/lib/net20/Machine.Specifications.dll.tdnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/lib/Machine.Specifications.0.5.6.0/lib/net20/Machine.Specifications.dll.tdnet -------------------------------------------------------------------------------- /lib/Machine.Specifications.0.5.6.0/lib/net40/Machine.Specifications.Clr4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/lib/Machine.Specifications.0.5.6.0/lib/net40/Machine.Specifications.Clr4.dll -------------------------------------------------------------------------------- /lib/Machine.Specifications.0.5.6.0/lib/net40/Machine.Specifications.TDNetRunner.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/lib/Machine.Specifications.0.5.6.0/lib/net40/Machine.Specifications.TDNetRunner.dll -------------------------------------------------------------------------------- /lib/Machine.Specifications.0.5.6.0/lib/net40/Machine.Specifications.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/lib/Machine.Specifications.0.5.6.0/lib/net40/Machine.Specifications.dll -------------------------------------------------------------------------------- /lib/Machine.Specifications.0.5.6.0/lib/net40/Machine.Specifications.dll.tdnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/lib/Machine.Specifications.0.5.6.0/lib/net40/Machine.Specifications.dll.tdnet -------------------------------------------------------------------------------- /lib/Machine.Specifications.0.5.6.0/tools/CommandLine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/lib/Machine.Specifications.0.5.6.0/tools/CommandLine.dll -------------------------------------------------------------------------------- /lib/Machine.Specifications.0.5.6.0/tools/CommandLine.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/lib/Machine.Specifications.0.5.6.0/tools/CommandLine.xml -------------------------------------------------------------------------------- /lib/Machine.Specifications.0.5.6.0/tools/InstallResharperRunner.4.1.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/lib/Machine.Specifications.0.5.6.0/tools/InstallResharperRunner.4.1.bat -------------------------------------------------------------------------------- /lib/Machine.Specifications.0.5.6.0/tools/InstallResharperRunner.4.5.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/lib/Machine.Specifications.0.5.6.0/tools/InstallResharperRunner.4.5.bat -------------------------------------------------------------------------------- /lib/Machine.Specifications.0.5.6.0/tools/InstallResharperRunner.5.0 - VS2008.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/lib/Machine.Specifications.0.5.6.0/tools/InstallResharperRunner.5.0 - VS2008.bat -------------------------------------------------------------------------------- /lib/Machine.Specifications.0.5.6.0/tools/InstallResharperRunner.5.0 - VS2010.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/lib/Machine.Specifications.0.5.6.0/tools/InstallResharperRunner.5.0 - VS2010.bat -------------------------------------------------------------------------------- /lib/Machine.Specifications.0.5.6.0/tools/InstallResharperRunner.5.1 - VS2008.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/lib/Machine.Specifications.0.5.6.0/tools/InstallResharperRunner.5.1 - VS2008.bat -------------------------------------------------------------------------------- /lib/Machine.Specifications.0.5.6.0/tools/InstallResharperRunner.5.1 - VS2010.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/lib/Machine.Specifications.0.5.6.0/tools/InstallResharperRunner.5.1 - VS2010.bat -------------------------------------------------------------------------------- /lib/Machine.Specifications.0.5.6.0/tools/InstallResharperRunner.6.0 - VS2008.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/lib/Machine.Specifications.0.5.6.0/tools/InstallResharperRunner.6.0 - VS2008.bat -------------------------------------------------------------------------------- /lib/Machine.Specifications.0.5.6.0/tools/InstallResharperRunner.6.0 - VS2010.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/lib/Machine.Specifications.0.5.6.0/tools/InstallResharperRunner.6.0 - VS2010.bat -------------------------------------------------------------------------------- /lib/Machine.Specifications.0.5.6.0/tools/InstallResharperRunner.6.1 - VS2008.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/lib/Machine.Specifications.0.5.6.0/tools/InstallResharperRunner.6.1 - VS2008.bat -------------------------------------------------------------------------------- /lib/Machine.Specifications.0.5.6.0/tools/InstallResharperRunner.6.1 - VS2010.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/lib/Machine.Specifications.0.5.6.0/tools/InstallResharperRunner.6.1 - VS2010.bat -------------------------------------------------------------------------------- /lib/Machine.Specifications.0.5.6.0/tools/InstallResharperRunner.7.0 - VS2011.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/lib/Machine.Specifications.0.5.6.0/tools/InstallResharperRunner.7.0 - VS2011.bat -------------------------------------------------------------------------------- /lib/Machine.Specifications.0.5.6.0/tools/InstallTDNetRunner.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/lib/Machine.Specifications.0.5.6.0/tools/InstallTDNetRunner.bat -------------------------------------------------------------------------------- /lib/Machine.Specifications.0.5.6.0/tools/InstallTDNetRunnerSilent.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/lib/Machine.Specifications.0.5.6.0/tools/InstallTDNetRunnerSilent.bat -------------------------------------------------------------------------------- /lib/Machine.Specifications.0.5.6.0/tools/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/lib/Machine.Specifications.0.5.6.0/tools/License.txt -------------------------------------------------------------------------------- /lib/Machine.Specifications.0.5.6.0/tools/Machine.Specifications.Clr4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/lib/Machine.Specifications.0.5.6.0/tools/Machine.Specifications.Clr4.dll -------------------------------------------------------------------------------- /lib/Machine.Specifications.0.5.6.0/tools/Machine.Specifications.GallioAdapter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/lib/Machine.Specifications.0.5.6.0/tools/Machine.Specifications.GallioAdapter.dll -------------------------------------------------------------------------------- /lib/Machine.Specifications.0.5.6.0/tools/Machine.Specifications.GallioAdapter.plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/lib/Machine.Specifications.0.5.6.0/tools/Machine.Specifications.GallioAdapter.plugin -------------------------------------------------------------------------------- /lib/Machine.Specifications.0.5.6.0/tools/Machine.Specifications.ReSharperRunner.4.1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/lib/Machine.Specifications.0.5.6.0/tools/Machine.Specifications.ReSharperRunner.4.1.dll -------------------------------------------------------------------------------- /lib/Machine.Specifications.0.5.6.0/tools/Machine.Specifications.ReSharperRunner.4.5.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/lib/Machine.Specifications.0.5.6.0/tools/Machine.Specifications.ReSharperRunner.4.5.dll -------------------------------------------------------------------------------- /lib/Machine.Specifications.0.5.6.0/tools/Machine.Specifications.ReSharperRunner.5.0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/lib/Machine.Specifications.0.5.6.0/tools/Machine.Specifications.ReSharperRunner.5.0.dll -------------------------------------------------------------------------------- /lib/Machine.Specifications.0.5.6.0/tools/Machine.Specifications.ReSharperRunner.5.1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/lib/Machine.Specifications.0.5.6.0/tools/Machine.Specifications.ReSharperRunner.5.1.dll -------------------------------------------------------------------------------- /lib/Machine.Specifications.0.5.6.0/tools/Machine.Specifications.ReSharperRunner.6.0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/lib/Machine.Specifications.0.5.6.0/tools/Machine.Specifications.ReSharperRunner.6.0.dll -------------------------------------------------------------------------------- /lib/Machine.Specifications.0.5.6.0/tools/Machine.Specifications.ReSharperRunner.6.1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/lib/Machine.Specifications.0.5.6.0/tools/Machine.Specifications.ReSharperRunner.6.1.dll -------------------------------------------------------------------------------- /lib/Machine.Specifications.0.5.6.0/tools/Machine.Specifications.ReSharperRunner.7.0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/lib/Machine.Specifications.0.5.6.0/tools/Machine.Specifications.ReSharperRunner.7.0.dll -------------------------------------------------------------------------------- /lib/Machine.Specifications.0.5.6.0/tools/Machine.Specifications.Reporting.Templates.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/lib/Machine.Specifications.0.5.6.0/tools/Machine.Specifications.Reporting.Templates.dll -------------------------------------------------------------------------------- /lib/Machine.Specifications.0.5.6.0/tools/Machine.Specifications.Reporting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/lib/Machine.Specifications.0.5.6.0/tools/Machine.Specifications.Reporting.dll -------------------------------------------------------------------------------- /lib/Machine.Specifications.0.5.6.0/tools/Machine.Specifications.SeleniumSupport.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/lib/Machine.Specifications.0.5.6.0/tools/Machine.Specifications.SeleniumSupport.dll -------------------------------------------------------------------------------- /lib/Machine.Specifications.0.5.6.0/tools/Machine.Specifications.TDNetRunner.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/lib/Machine.Specifications.0.5.6.0/tools/Machine.Specifications.TDNetRunner.dll -------------------------------------------------------------------------------- /lib/Machine.Specifications.0.5.6.0/tools/Machine.Specifications.WatinSupport.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/lib/Machine.Specifications.0.5.6.0/tools/Machine.Specifications.WatinSupport.dll -------------------------------------------------------------------------------- /lib/Machine.Specifications.0.5.6.0/tools/Machine.Specifications.WebDriverSupport.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/lib/Machine.Specifications.0.5.6.0/tools/Machine.Specifications.WebDriverSupport.dll -------------------------------------------------------------------------------- /lib/Machine.Specifications.0.5.6.0/tools/Machine.Specifications.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/lib/Machine.Specifications.0.5.6.0/tools/Machine.Specifications.dll -------------------------------------------------------------------------------- /lib/Machine.Specifications.0.5.6.0/tools/Machine.Specifications.dll.tdnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/lib/Machine.Specifications.0.5.6.0/tools/Machine.Specifications.dll.tdnet -------------------------------------------------------------------------------- /lib/Machine.Specifications.0.5.6.0/tools/Spark.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/lib/Machine.Specifications.0.5.6.0/tools/Spark.dll -------------------------------------------------------------------------------- /lib/Machine.Specifications.0.5.6.0/tools/TestDriven.Framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/lib/Machine.Specifications.0.5.6.0/tools/TestDriven.Framework.dll -------------------------------------------------------------------------------- /lib/Machine.Specifications.0.5.6.0/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/lib/Machine.Specifications.0.5.6.0/tools/install.ps1 -------------------------------------------------------------------------------- /lib/Machine.Specifications.0.5.6.0/tools/mspec-clr4.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/lib/Machine.Specifications.0.5.6.0/tools/mspec-clr4.exe -------------------------------------------------------------------------------- /lib/Machine.Specifications.0.5.6.0/tools/mspec-clr4.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/lib/Machine.Specifications.0.5.6.0/tools/mspec-clr4.exe.config -------------------------------------------------------------------------------- /lib/Machine.Specifications.0.5.6.0/tools/mspec-x86-clr4.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/lib/Machine.Specifications.0.5.6.0/tools/mspec-x86-clr4.exe -------------------------------------------------------------------------------- /lib/Machine.Specifications.0.5.6.0/tools/mspec-x86-clr4.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/lib/Machine.Specifications.0.5.6.0/tools/mspec-x86-clr4.exe.config -------------------------------------------------------------------------------- /lib/Machine.Specifications.0.5.6.0/tools/mspec-x86.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/lib/Machine.Specifications.0.5.6.0/tools/mspec-x86.exe -------------------------------------------------------------------------------- /lib/Machine.Specifications.0.5.6.0/tools/mspec.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/lib/Machine.Specifications.0.5.6.0/tools/mspec.exe -------------------------------------------------------------------------------- /lib/NUnit.2.6.0.12054/NUnit.2.6.0.12054.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/lib/NUnit.2.6.0.12054/NUnit.2.6.0.12054.nupkg -------------------------------------------------------------------------------- /lib/NUnit.2.6.0.12054/lib/nunit.framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/lib/NUnit.2.6.0.12054/lib/nunit.framework.dll -------------------------------------------------------------------------------- /lib/NUnit.2.6.0.12054/lib/nunit.framework.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/lib/NUnit.2.6.0.12054/lib/nunit.framework.xml -------------------------------------------------------------------------------- /lib/NUnit.2.6.0.12054/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/lib/NUnit.2.6.0.12054/license.txt -------------------------------------------------------------------------------- /lib/repositories.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/lib/repositories.config -------------------------------------------------------------------------------- /lib/xunit.net/HTML.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/lib/xunit.net/HTML.xslt -------------------------------------------------------------------------------- /lib/xunit.net/NUnitXml.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/lib/xunit.net/NUnitXml.xslt -------------------------------------------------------------------------------- /lib/xunit.net/xunit.console.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/lib/xunit.net/xunit.console.exe -------------------------------------------------------------------------------- /lib/xunit.net/xunit.console.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/lib/xunit.net/xunit.console.exe.config -------------------------------------------------------------------------------- /lib/xunit.net/xunit.console.x86.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/lib/xunit.net/xunit.console.x86.exe -------------------------------------------------------------------------------- /lib/xunit.net/xunit.console.x86.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/lib/xunit.net/xunit.console.x86.exe.config -------------------------------------------------------------------------------- /lib/xunit.net/xunit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/lib/xunit.net/xunit.dll -------------------------------------------------------------------------------- /lib/xunit.net/xunit.dll.tdnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/lib/xunit.net/xunit.dll.tdnet -------------------------------------------------------------------------------- /lib/xunit.net/xunit.extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/lib/xunit.net/xunit.extensions.dll -------------------------------------------------------------------------------- /lib/xunit.net/xunit.extensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/lib/xunit.net/xunit.extensions.xml -------------------------------------------------------------------------------- /lib/xunit.net/xunit.gui.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/lib/xunit.net/xunit.gui.exe -------------------------------------------------------------------------------- /lib/xunit.net/xunit.gui.x86.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/lib/xunit.net/xunit.gui.x86.exe -------------------------------------------------------------------------------- /lib/xunit.net/xunit.installer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/lib/xunit.net/xunit.installer.exe -------------------------------------------------------------------------------- /lib/xunit.net/xunit.runner.msbuild.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/lib/xunit.net/xunit.runner.msbuild.dll -------------------------------------------------------------------------------- /lib/xunit.net/xunit.runner.resharper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/lib/xunit.net/xunit.runner.resharper.dll -------------------------------------------------------------------------------- /lib/xunit.net/xunit.runner.tdnet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/lib/xunit.net/xunit.runner.tdnet.dll -------------------------------------------------------------------------------- /lib/xunit.net/xunit.runner.utility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/lib/xunit.net/xunit.runner.utility.dll -------------------------------------------------------------------------------- /lib/xunit.net/xunit.runner.utility.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/lib/xunit.net/xunit.runner.utility.xml -------------------------------------------------------------------------------- /lib/xunit.net/xunit.tests.msbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/lib/xunit.net/xunit.tests.msbuild -------------------------------------------------------------------------------- /lib/xunit.net/xunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/lib/xunit.net/xunit.xml -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/license.txt -------------------------------------------------------------------------------- /nant.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/nant.build -------------------------------------------------------------------------------- /open.bat: -------------------------------------------------------------------------------- 1 | src\should.sln -------------------------------------------------------------------------------- /src/CommonAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/CommonAssemblyInfo.cs -------------------------------------------------------------------------------- /src/Should.Core/Assertions/Assert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Core/Assertions/Assert.cs -------------------------------------------------------------------------------- /src/Should.Core/Assertions/Assert.cs.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Core/Assertions/Assert.cs.orig -------------------------------------------------------------------------------- /src/Should.Core/Assertions/AssertComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Core/Assertions/AssertComparer.cs -------------------------------------------------------------------------------- /src/Should.Core/Assertions/AssertEqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Core/Assertions/AssertEqualityComparer.cs -------------------------------------------------------------------------------- /src/Should.Core/Assertions/Assertions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Core/Assertions/Assertions.cs -------------------------------------------------------------------------------- /src/Should.Core/Assertions/EnumerableEqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Core/Assertions/EnumerableEqualityComparer.cs -------------------------------------------------------------------------------- /src/Should.Core/Assertions/Record.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Core/Assertions/Record.cs -------------------------------------------------------------------------------- /src/Should.Core/DatePrecision.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Core/DatePrecision.cs -------------------------------------------------------------------------------- /src/Should.Core/Exceptions/AssertActualExpectedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Core/Exceptions/AssertActualExpectedException.cs -------------------------------------------------------------------------------- /src/Should.Core/Exceptions/AssertException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Core/Exceptions/AssertException.cs -------------------------------------------------------------------------------- /src/Should.Core/Exceptions/ComparisonException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Core/Exceptions/ComparisonException.cs -------------------------------------------------------------------------------- /src/Should.Core/Exceptions/ContainsException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Core/Exceptions/ContainsException.cs -------------------------------------------------------------------------------- /src/Should.Core/Exceptions/DoesNotContainException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Core/Exceptions/DoesNotContainException.cs -------------------------------------------------------------------------------- /src/Should.Core/Exceptions/DoesNotThrowException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Core/Exceptions/DoesNotThrowException.cs -------------------------------------------------------------------------------- /src/Should.Core/Exceptions/EmptyException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Core/Exceptions/EmptyException.cs -------------------------------------------------------------------------------- /src/Should.Core/Exceptions/EqualException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Core/Exceptions/EqualException.cs -------------------------------------------------------------------------------- /src/Should.Core/Exceptions/FalseException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Core/Exceptions/FalseException.cs -------------------------------------------------------------------------------- /src/Should.Core/Exceptions/GreaterThanException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Core/Exceptions/GreaterThanException.cs -------------------------------------------------------------------------------- /src/Should.Core/Exceptions/GreaterThanOrEqualException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Core/Exceptions/GreaterThanOrEqualException.cs -------------------------------------------------------------------------------- /src/Should.Core/Exceptions/InRangeException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Core/Exceptions/InRangeException.cs -------------------------------------------------------------------------------- /src/Should.Core/Exceptions/IsAssignableFromException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Core/Exceptions/IsAssignableFromException.cs -------------------------------------------------------------------------------- /src/Should.Core/Exceptions/IsNotTypeException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Core/Exceptions/IsNotTypeException.cs -------------------------------------------------------------------------------- /src/Should.Core/Exceptions/IsTypeException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Core/Exceptions/IsTypeException.cs -------------------------------------------------------------------------------- /src/Should.Core/Exceptions/LessThanException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Core/Exceptions/LessThanException.cs -------------------------------------------------------------------------------- /src/Should.Core/Exceptions/LessThanOrEqualException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Core/Exceptions/LessThanOrEqualException.cs -------------------------------------------------------------------------------- /src/Should.Core/Exceptions/NotEmptyException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Core/Exceptions/NotEmptyException.cs -------------------------------------------------------------------------------- /src/Should.Core/Exceptions/NotEqualException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Core/Exceptions/NotEqualException.cs -------------------------------------------------------------------------------- /src/Should.Core/Exceptions/NotInRangeException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Core/Exceptions/NotInRangeException.cs -------------------------------------------------------------------------------- /src/Should.Core/Exceptions/NotNullException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Core/Exceptions/NotNullException.cs -------------------------------------------------------------------------------- /src/Should.Core/Exceptions/NotSameException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Core/Exceptions/NotSameException.cs -------------------------------------------------------------------------------- /src/Should.Core/Exceptions/NullException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Core/Exceptions/NullException.cs -------------------------------------------------------------------------------- /src/Should.Core/Exceptions/ParameterCountMismatchException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Core/Exceptions/ParameterCountMismatchException.cs -------------------------------------------------------------------------------- /src/Should.Core/Exceptions/SameException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Core/Exceptions/SameException.cs -------------------------------------------------------------------------------- /src/Should.Core/Exceptions/SingleException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Core/Exceptions/SingleException.cs -------------------------------------------------------------------------------- /src/Should.Core/Exceptions/StartsWithException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Core/Exceptions/StartsWithException.cs -------------------------------------------------------------------------------- /src/Should.Core/Exceptions/ThrowsException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Core/Exceptions/ThrowsException.cs -------------------------------------------------------------------------------- /src/Should.Core/Exceptions/TimeoutException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Core/Exceptions/TimeoutException.cs -------------------------------------------------------------------------------- /src/Should.Core/Exceptions/TraceAssertException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Core/Exceptions/TraceAssertException.cs -------------------------------------------------------------------------------- /src/Should.Core/Exceptions/TrueException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Core/Exceptions/TrueException.cs -------------------------------------------------------------------------------- /src/Should.Core/Should.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Core/Should.Core.csproj -------------------------------------------------------------------------------- /src/Should.Core/Should.Core.csproj.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Core/Should.Core.csproj.orig -------------------------------------------------------------------------------- /src/Should.Fluent.UnitTests/BeBoolSpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Fluent.UnitTests/BeBoolSpecs.cs -------------------------------------------------------------------------------- /src/Should.Fluent.UnitTests/BeDateTimeSpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Fluent.UnitTests/BeDateTimeSpecs.cs -------------------------------------------------------------------------------- /src/Should.Fluent.UnitTests/BeDateTimeSpecs.cs.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Fluent.UnitTests/BeDateTimeSpecs.cs.orig -------------------------------------------------------------------------------- /src/Should.Fluent.UnitTests/BeDoubleSpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Fluent.UnitTests/BeDoubleSpecs.cs -------------------------------------------------------------------------------- /src/Should.Fluent.UnitTests/BeEnumerableSpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Fluent.UnitTests/BeEnumerableSpecs.cs -------------------------------------------------------------------------------- /src/Should.Fluent.UnitTests/BeGuidSpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Fluent.UnitTests/BeGuidSpecs.cs -------------------------------------------------------------------------------- /src/Should.Fluent.UnitTests/BeGuidSpecs.cs.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Fluent.UnitTests/BeGuidSpecs.cs.orig -------------------------------------------------------------------------------- /src/Should.Fluent.UnitTests/BeMethodCallExpressionSpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Fluent.UnitTests/BeMethodCallExpressionSpecs.cs -------------------------------------------------------------------------------- /src/Should.Fluent.UnitTests/BeNullableBoolSpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Fluent.UnitTests/BeNullableBoolSpecs.cs -------------------------------------------------------------------------------- /src/Should.Fluent.UnitTests/BeNullableDateTimeSpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Fluent.UnitTests/BeNullableDateTimeSpecs.cs -------------------------------------------------------------------------------- /src/Should.Fluent.UnitTests/BeSpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Fluent.UnitTests/BeSpecs.cs -------------------------------------------------------------------------------- /src/Should.Fluent.UnitTests/BeStringSpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Fluent.UnitTests/BeStringSpecs.cs -------------------------------------------------------------------------------- /src/Should.Fluent.UnitTests/Behaviors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Fluent.UnitTests/Behaviors.cs -------------------------------------------------------------------------------- /src/Should.Fluent.UnitTests/ContainsSpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Fluent.UnitTests/ContainsSpecs.cs -------------------------------------------------------------------------------- /src/Should.Fluent.UnitTests/CountSpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Fluent.UnitTests/CountSpecs.cs -------------------------------------------------------------------------------- /src/Should.Fluent.UnitTests/CountSpecs.cs.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Fluent.UnitTests/CountSpecs.cs.orig -------------------------------------------------------------------------------- /src/Should.Fluent.UnitTests/ExtensilbitySpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Fluent.UnitTests/ExtensilbitySpecs.cs -------------------------------------------------------------------------------- /src/Should.Fluent.UnitTests/IntegrationTests/GreaterThanSpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Fluent.UnitTests/IntegrationTests/GreaterThanSpecs.cs -------------------------------------------------------------------------------- /src/Should.Fluent.UnitTests/IntegrationTests/LessThanSpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Fluent.UnitTests/IntegrationTests/LessThanSpecs.cs -------------------------------------------------------------------------------- /src/Should.Fluent.UnitTests/IntegrationTests/TestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Fluent.UnitTests/IntegrationTests/TestBase.cs -------------------------------------------------------------------------------- /src/Should.Fluent.UnitTests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Fluent.UnitTests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Should.Fluent.UnitTests/Should.Fluent.UnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Fluent.UnitTests/Should.Fluent.UnitTests.csproj -------------------------------------------------------------------------------- /src/Should.Fluent.UnitTests/Should.Fluent.UnitTests.csproj.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Fluent.UnitTests/Should.Fluent.UnitTests.csproj.orig -------------------------------------------------------------------------------- /src/Should.Fluent.UnitTests/ShouldCoreProviderSpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Fluent.UnitTests/ShouldCoreProviderSpecs.cs -------------------------------------------------------------------------------- /src/Should.Fluent.UnitTests/ShouldCoreProviderSpecs.cs.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Fluent.UnitTests/ShouldCoreProviderSpecs.cs.orig -------------------------------------------------------------------------------- /src/Should.Fluent.UnitTests/ShouldDateTimeSpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Fluent.UnitTests/ShouldDateTimeSpecs.cs -------------------------------------------------------------------------------- /src/Should.Fluent.UnitTests/ShouldDictionarySpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Fluent.UnitTests/ShouldDictionarySpecs.cs -------------------------------------------------------------------------------- /src/Should.Fluent.UnitTests/ShouldDoubleSpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Fluent.UnitTests/ShouldDoubleSpecs.cs -------------------------------------------------------------------------------- /src/Should.Fluent.UnitTests/ShouldExtensionsSpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Fluent.UnitTests/ShouldExtensionsSpecs.cs -------------------------------------------------------------------------------- /src/Should.Fluent.UnitTests/ShouldSpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Fluent.UnitTests/ShouldSpecs.cs -------------------------------------------------------------------------------- /src/Should.Fluent.UnitTests/TestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Fluent.UnitTests/TestBase.cs -------------------------------------------------------------------------------- /src/Should.Fluent.UnitTests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Fluent.UnitTests/packages.config -------------------------------------------------------------------------------- /src/Should.Fluent.UnitTests/result_should_be_target.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Fluent.UnitTests/result_should_be_target.cs -------------------------------------------------------------------------------- /src/Should.Fluent/BeBoolExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Fluent/BeBoolExtensions.cs -------------------------------------------------------------------------------- /src/Should.Fluent/BeCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Fluent/BeCollectionExtensions.cs -------------------------------------------------------------------------------- /src/Should.Fluent/BeDateTimeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Fluent/BeDateTimeExtensions.cs -------------------------------------------------------------------------------- /src/Should.Fluent/BeDoubleExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Fluent/BeDoubleExtensions.cs -------------------------------------------------------------------------------- /src/Should.Fluent/BeEnumerableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Fluent/BeEnumerableExtensions.cs -------------------------------------------------------------------------------- /src/Should.Fluent/BeGuidExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Fluent/BeGuidExtensions.cs -------------------------------------------------------------------------------- /src/Should.Fluent/BeNullableBoolExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Fluent/BeNullableBoolExtensions.cs -------------------------------------------------------------------------------- /src/Should.Fluent/BeNullableDateTimeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Fluent/BeNullableDateTimeExtensions.cs -------------------------------------------------------------------------------- /src/Should.Fluent/BeStringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Fluent/BeStringExtensions.cs -------------------------------------------------------------------------------- /src/Should.Fluent/IAssertProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Fluent/IAssertProvider.cs -------------------------------------------------------------------------------- /src/Should.Fluent/IAssertProvider.cs.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Fluent/IAssertProvider.cs.orig -------------------------------------------------------------------------------- /src/Should.Fluent/Model/Be.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Fluent/Model/Be.cs -------------------------------------------------------------------------------- /src/Should.Fluent/Model/BeBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Fluent/Model/BeBase.cs -------------------------------------------------------------------------------- /src/Should.Fluent/Model/BeBool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Fluent/Model/BeBool.cs -------------------------------------------------------------------------------- /src/Should.Fluent/Model/BeCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Fluent/Model/BeCollection.cs -------------------------------------------------------------------------------- /src/Should.Fluent/Model/BeDateTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Fluent/Model/BeDateTime.cs -------------------------------------------------------------------------------- /src/Should.Fluent/Model/BeDecimal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Fluent/Model/BeDecimal.cs -------------------------------------------------------------------------------- /src/Should.Fluent/Model/BeEnumerable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Fluent/Model/BeEnumerable.cs -------------------------------------------------------------------------------- /src/Should.Fluent/Model/BeGuid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Fluent/Model/BeGuid.cs -------------------------------------------------------------------------------- /src/Should.Fluent/Model/BeMethodCallExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Fluent/Model/BeMethodCallExpression.cs -------------------------------------------------------------------------------- /src/Should.Fluent/Model/BeNullableBool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Fluent/Model/BeNullableBool.cs -------------------------------------------------------------------------------- /src/Should.Fluent/Model/BeNullableDateTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Fluent/Model/BeNullableDateTime.cs -------------------------------------------------------------------------------- /src/Should.Fluent/Model/BeString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Fluent/Model/BeString.cs -------------------------------------------------------------------------------- /src/Should.Fluent/Model/Check.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Fluent/Model/Check.cs -------------------------------------------------------------------------------- /src/Should.Fluent/Model/Contain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Fluent/Model/Contain.cs -------------------------------------------------------------------------------- /src/Should.Fluent/Model/ContainQueryable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Fluent/Model/ContainQueryable.cs -------------------------------------------------------------------------------- /src/Should.Fluent/Model/Count.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Fluent/Model/Count.cs -------------------------------------------------------------------------------- /src/Should.Fluent/Model/IBe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Fluent/Model/IBe.cs -------------------------------------------------------------------------------- /src/Should.Fluent/Model/IShould.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Fluent/Model/IShould.cs -------------------------------------------------------------------------------- /src/Should.Fluent/Model/Should.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Fluent/Model/Should.cs -------------------------------------------------------------------------------- /src/Should.Fluent/Model/ShouldBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Fluent/Model/ShouldBase.cs -------------------------------------------------------------------------------- /src/Should.Fluent/Model/ShouldCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Fluent/Model/ShouldCollection.cs -------------------------------------------------------------------------------- /src/Should.Fluent/Model/ShouldDateTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Fluent/Model/ShouldDateTime.cs -------------------------------------------------------------------------------- /src/Should.Fluent/Model/ShouldDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Fluent/Model/ShouldDictionary.cs -------------------------------------------------------------------------------- /src/Should.Fluent/Model/ShouldDouble.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Fluent/Model/ShouldDouble.cs -------------------------------------------------------------------------------- /src/Should.Fluent/Model/ShouldEnumerable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Fluent/Model/ShouldEnumerable.cs -------------------------------------------------------------------------------- /src/Should.Fluent/Model/ShouldString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Fluent/Model/ShouldString.cs -------------------------------------------------------------------------------- /src/Should.Fluent/Should.Fluent.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Fluent/Should.Fluent.csproj -------------------------------------------------------------------------------- /src/Should.Fluent/Should.Fluent.csproj.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Fluent/Should.Fluent.csproj.orig -------------------------------------------------------------------------------- /src/Should.Fluent/ShouldCoreAssertProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Fluent/ShouldCoreAssertProvider.cs -------------------------------------------------------------------------------- /src/Should.Fluent/ShouldCoreAssertProvider.cs.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Fluent/ShouldCoreAssertProvider.cs.orig -------------------------------------------------------------------------------- /src/Should.Fluent/ShouldDateTimeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Fluent/ShouldDateTimeExtensions.cs -------------------------------------------------------------------------------- /src/Should.Fluent/ShouldDoubleExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Fluent/ShouldDoubleExtensions.cs -------------------------------------------------------------------------------- /src/Should.Fluent/ShouldExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Fluent/ShouldExtensions.cs -------------------------------------------------------------------------------- /src/Should.Fluent/ShouldExtensions.cs.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Fluent/ShouldExtensions.cs.orig -------------------------------------------------------------------------------- /src/Should.Fluent/ShouldStringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.Fluent/ShouldStringExtensions.cs -------------------------------------------------------------------------------- /src/Should.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.sln -------------------------------------------------------------------------------- /src/Should.sln.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/Should.sln.cache -------------------------------------------------------------------------------- /src/nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/nuget.config -------------------------------------------------------------------------------- /src/should.Facts/ActionAssertionExtension_Facts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/should.Facts/ActionAssertionExtension_Facts.cs -------------------------------------------------------------------------------- /src/should.Facts/Core/AssertActualExpectedExceptionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/should.Facts/Core/AssertActualExpectedExceptionTests.cs -------------------------------------------------------------------------------- /src/should.Facts/Core/AssertExceptionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/should.Facts/Core/AssertExceptionTests.cs -------------------------------------------------------------------------------- /src/should.Facts/Core/ComparisonTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/should.Facts/Core/ComparisonTests.cs -------------------------------------------------------------------------------- /src/should.Facts/Core/ContainsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/should.Facts/Core/ContainsTests.cs -------------------------------------------------------------------------------- /src/should.Facts/Core/DoesNotContainTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/should.Facts/Core/DoesNotContainTests.cs -------------------------------------------------------------------------------- /src/should.Facts/Core/DoesNotThrowTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/should.Facts/Core/DoesNotThrowTests.cs -------------------------------------------------------------------------------- /src/should.Facts/Core/EmptyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/should.Facts/Core/EmptyTests.cs -------------------------------------------------------------------------------- /src/should.Facts/Core/FalseTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/should.Facts/Core/FalseTests.cs -------------------------------------------------------------------------------- /src/should.Facts/Core/GreaterThanOrEqualTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/should.Facts/Core/GreaterThanOrEqualTests.cs -------------------------------------------------------------------------------- /src/should.Facts/Core/GreaterThanTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/should.Facts/Core/GreaterThanTests.cs -------------------------------------------------------------------------------- /src/should.Facts/Core/InRangeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/should.Facts/Core/InRangeTests.cs -------------------------------------------------------------------------------- /src/should.Facts/Core/IsAssignableFromTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/should.Facts/Core/IsAssignableFromTests.cs -------------------------------------------------------------------------------- /src/should.Facts/Core/IsNotTypeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/should.Facts/Core/IsNotTypeTests.cs -------------------------------------------------------------------------------- /src/should.Facts/Core/IsTypeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/should.Facts/Core/IsTypeTests.cs -------------------------------------------------------------------------------- /src/should.Facts/Core/LessThanOrEqualTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/should.Facts/Core/LessThanOrEqualTests.cs -------------------------------------------------------------------------------- /src/should.Facts/Core/LessThanTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/should.Facts/Core/LessThanTests.cs -------------------------------------------------------------------------------- /src/should.Facts/Core/NotEmptyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/should.Facts/Core/NotEmptyTests.cs -------------------------------------------------------------------------------- /src/should.Facts/Core/NotEqualTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/should.Facts/Core/NotEqualTests.cs -------------------------------------------------------------------------------- /src/should.Facts/Core/NotInRangeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/should.Facts/Core/NotInRangeTests.cs -------------------------------------------------------------------------------- /src/should.Facts/Core/NotNullTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/should.Facts/Core/NotNullTests.cs -------------------------------------------------------------------------------- /src/should.Facts/Core/NotSameTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/should.Facts/Core/NotSameTests.cs -------------------------------------------------------------------------------- /src/should.Facts/Core/NullTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/should.Facts/Core/NullTests.cs -------------------------------------------------------------------------------- /src/should.Facts/Core/RecordTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/should.Facts/Core/RecordTests.cs -------------------------------------------------------------------------------- /src/should.Facts/Core/SameTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/should.Facts/Core/SameTests.cs -------------------------------------------------------------------------------- /src/should.Facts/Core/SerializationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/should.Facts/Core/SerializationTests.cs -------------------------------------------------------------------------------- /src/should.Facts/Core/SingleFacts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/should.Facts/Core/SingleFacts.cs -------------------------------------------------------------------------------- /src/should.Facts/Core/TrueTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/should.Facts/Core/TrueTests.cs -------------------------------------------------------------------------------- /src/should.Facts/DateAssertionExtension_Facts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/should.Facts/DateAssertionExtension_Facts.cs -------------------------------------------------------------------------------- /src/should.Facts/DoubleAssertionExtension_Facts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/should.Facts/DoubleAssertionExtension_Facts.cs -------------------------------------------------------------------------------- /src/should.Facts/EqualTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/should.Facts/EqualTests.cs -------------------------------------------------------------------------------- /src/should.Facts/ObjectAssertionExtension_Facts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/should.Facts/ObjectAssertionExtension_Facts.cs -------------------------------------------------------------------------------- /src/should.Facts/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/should.Facts/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/should.Facts/Should.Facts.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/should.Facts/Should.Facts.csproj -------------------------------------------------------------------------------- /src/should.Facts/Should.Facts.csproj.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/should.Facts/Should.Facts.csproj.orig -------------------------------------------------------------------------------- /src/should.Facts/StringAssertionExtensions_Facts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/should.Facts/StringAssertionExtensions_Facts.cs -------------------------------------------------------------------------------- /src/should.Facts/ThrowsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/should.Facts/ThrowsTests.cs -------------------------------------------------------------------------------- /src/should.Facts/TraceAssertTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/should.Facts/TraceAssertTests.cs -------------------------------------------------------------------------------- /src/should/ActionAssertionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/should/ActionAssertionExtensions.cs -------------------------------------------------------------------------------- /src/should/BooleanAssertionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/should/BooleanAssertionExtensions.cs -------------------------------------------------------------------------------- /src/should/CollectionAssertionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/should/CollectionAssertionExtensions.cs -------------------------------------------------------------------------------- /src/should/DateAssertionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/should/DateAssertionExtensions.cs -------------------------------------------------------------------------------- /src/should/DoubleAssertionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/should/DoubleAssertionExtensions.cs -------------------------------------------------------------------------------- /src/should/ObjectAssertExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/should/ObjectAssertExtensions.cs -------------------------------------------------------------------------------- /src/should/Should.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/should/Should.csproj -------------------------------------------------------------------------------- /src/should/Should.csproj.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/should/Should.csproj.orig -------------------------------------------------------------------------------- /src/should/StringAssertionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/src/should/StringAssertionExtensions.cs -------------------------------------------------------------------------------- /tools/ILMerge/ILMerge.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/tools/ILMerge/ILMerge.exe -------------------------------------------------------------------------------- /tools/Nant/Microsoft.SqlServer.BatchParser.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/tools/Nant/Microsoft.SqlServer.BatchParser.dll -------------------------------------------------------------------------------- /tools/Nant/Microsoft.SqlServer.BatchParserClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/tools/Nant/Microsoft.SqlServer.BatchParserClient.dll -------------------------------------------------------------------------------- /tools/Nant/Microsoft.SqlServer.ConnectionInfo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/tools/Nant/Microsoft.SqlServer.ConnectionInfo.dll -------------------------------------------------------------------------------- /tools/Nant/Microsoft.SqlServer.Management.Sdk.Sfc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/tools/Nant/Microsoft.SqlServer.Management.Sdk.Sfc.dll -------------------------------------------------------------------------------- /tools/Nant/Microsoft.SqlServer.Replication.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/tools/Nant/Microsoft.SqlServer.Replication.dll -------------------------------------------------------------------------------- /tools/Nant/Microsoft.SqlServer.Smo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/tools/Nant/Microsoft.SqlServer.Smo.dll -------------------------------------------------------------------------------- /tools/Nant/Microsoft.SqlServer.SqlClrProvider.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/tools/Nant/Microsoft.SqlServer.SqlClrProvider.dll -------------------------------------------------------------------------------- /tools/Nant/NAnt.CompressionTasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/tools/Nant/NAnt.CompressionTasks.dll -------------------------------------------------------------------------------- /tools/Nant/NAnt.CompressionTasks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/tools/Nant/NAnt.CompressionTasks.xml -------------------------------------------------------------------------------- /tools/Nant/NAnt.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/tools/Nant/NAnt.Core.dll -------------------------------------------------------------------------------- /tools/Nant/NAnt.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/tools/Nant/NAnt.Core.xml -------------------------------------------------------------------------------- /tools/Nant/NAnt.DotNetTasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/tools/Nant/NAnt.DotNetTasks.dll -------------------------------------------------------------------------------- /tools/Nant/NAnt.DotNetTasks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/tools/Nant/NAnt.DotNetTasks.xml -------------------------------------------------------------------------------- /tools/Nant/NAnt.MSNetTasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/tools/Nant/NAnt.MSNetTasks.dll -------------------------------------------------------------------------------- /tools/Nant/NAnt.MSNetTasks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/tools/Nant/NAnt.MSNetTasks.xml -------------------------------------------------------------------------------- /tools/Nant/NAnt.NUnit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/tools/Nant/NAnt.NUnit.dll -------------------------------------------------------------------------------- /tools/Nant/NAnt.NUnit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/tools/Nant/NAnt.NUnit.xml -------------------------------------------------------------------------------- /tools/Nant/NAnt.NUnit1Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/tools/Nant/NAnt.NUnit1Tasks.dll -------------------------------------------------------------------------------- /tools/Nant/NAnt.NUnit1Tasks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/tools/Nant/NAnt.NUnit1Tasks.xml -------------------------------------------------------------------------------- /tools/Nant/NAnt.NUnit2Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/tools/Nant/NAnt.NUnit2Tasks.dll -------------------------------------------------------------------------------- /tools/Nant/NAnt.NUnit2Tasks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/tools/Nant/NAnt.NUnit2Tasks.xml -------------------------------------------------------------------------------- /tools/Nant/NAnt.SourceControlTasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/tools/Nant/NAnt.SourceControlTasks.dll -------------------------------------------------------------------------------- /tools/Nant/NAnt.SourceControlTasks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/tools/Nant/NAnt.SourceControlTasks.xml -------------------------------------------------------------------------------- /tools/Nant/NAnt.VSNetTasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/tools/Nant/NAnt.VSNetTasks.dll -------------------------------------------------------------------------------- /tools/Nant/NAnt.VSNetTasks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/tools/Nant/NAnt.VSNetTasks.xml -------------------------------------------------------------------------------- /tools/Nant/NAnt.VisualCppTasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/tools/Nant/NAnt.VisualCppTasks.dll -------------------------------------------------------------------------------- /tools/Nant/NAnt.VisualCppTasks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/tools/Nant/NAnt.VisualCppTasks.xml -------------------------------------------------------------------------------- /tools/Nant/NAnt.Win32Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/tools/Nant/NAnt.Win32Tasks.dll -------------------------------------------------------------------------------- /tools/Nant/NAnt.Win32Tasks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/tools/Nant/NAnt.Win32Tasks.xml -------------------------------------------------------------------------------- /tools/Nant/NAnt.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/tools/Nant/NAnt.exe -------------------------------------------------------------------------------- /tools/Nant/NAnt.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/tools/Nant/NAnt.exe.config -------------------------------------------------------------------------------- /tools/Nant/NAnt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/tools/Nant/NAnt.xml -------------------------------------------------------------------------------- /tools/Nant/extensions/common/2.0/NAnt.MSBuild.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/tools/Nant/extensions/common/2.0/NAnt.MSBuild.dll -------------------------------------------------------------------------------- /tools/Nant/extensions/common/2.0/NAnt.MSBuild.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/tools/Nant/extensions/common/2.0/NAnt.MSBuild.xml -------------------------------------------------------------------------------- /tools/Nant/lib/common/neutral/ICSharpCode.SharpCvsLib.Console.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/tools/Nant/lib/common/neutral/ICSharpCode.SharpCvsLib.Console.dll -------------------------------------------------------------------------------- /tools/Nant/lib/common/neutral/ICSharpCode.SharpCvsLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/tools/Nant/lib/common/neutral/ICSharpCode.SharpCvsLib.dll -------------------------------------------------------------------------------- /tools/Nant/lib/common/neutral/ICSharpCode.SharpZipLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/tools/Nant/lib/common/neutral/ICSharpCode.SharpZipLib.dll -------------------------------------------------------------------------------- /tools/Nant/lib/common/neutral/NUnitCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/tools/Nant/lib/common/neutral/NUnitCore.dll -------------------------------------------------------------------------------- /tools/Nant/lib/net/1.0/NDoc.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/tools/Nant/lib/net/1.0/NDoc.Core.dll -------------------------------------------------------------------------------- /tools/Nant/lib/net/1.0/NDoc.Documenter.Msdn.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/tools/Nant/lib/net/1.0/NDoc.Documenter.Msdn.dll -------------------------------------------------------------------------------- /tools/Nant/lib/net/1.0/NDoc.ExtendedUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/tools/Nant/lib/net/1.0/NDoc.ExtendedUI.dll -------------------------------------------------------------------------------- /tools/Nant/lib/net/1.0/nunit.core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/tools/Nant/lib/net/1.0/nunit.core.dll -------------------------------------------------------------------------------- /tools/Nant/lib/net/1.0/nunit.framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/tools/Nant/lib/net/1.0/nunit.framework.dll -------------------------------------------------------------------------------- /tools/Nant/lib/net/1.0/nunit.util.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/tools/Nant/lib/net/1.0/nunit.util.dll -------------------------------------------------------------------------------- /tools/Nant/lib/net/1.1/NDoc.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/tools/Nant/lib/net/1.1/NDoc.Core.dll -------------------------------------------------------------------------------- /tools/Nant/lib/net/1.1/NDoc.Documenter.Msdn.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/tools/Nant/lib/net/1.1/NDoc.Documenter.Msdn.dll -------------------------------------------------------------------------------- /tools/Nant/lib/net/1.1/NDoc.ExtendedUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/tools/Nant/lib/net/1.1/NDoc.ExtendedUI.dll -------------------------------------------------------------------------------- /tools/Nant/lib/net/1.1/nunit.core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/tools/Nant/lib/net/1.1/nunit.core.dll -------------------------------------------------------------------------------- /tools/Nant/lib/net/1.1/nunit.framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/tools/Nant/lib/net/1.1/nunit.framework.dll -------------------------------------------------------------------------------- /tools/Nant/lib/net/1.1/nunit.util.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/tools/Nant/lib/net/1.1/nunit.util.dll -------------------------------------------------------------------------------- /tools/Nant/lib/net/2.0/NDoc.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/tools/Nant/lib/net/2.0/NDoc.Core.dll -------------------------------------------------------------------------------- /tools/Nant/lib/net/2.0/NDoc.Documenter.Msdn.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/tools/Nant/lib/net/2.0/NDoc.Documenter.Msdn.dll -------------------------------------------------------------------------------- /tools/Nant/lib/net/2.0/NDoc.ExtendedUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/tools/Nant/lib/net/2.0/NDoc.ExtendedUI.dll -------------------------------------------------------------------------------- /tools/Nant/lib/net/2.0/nunit.core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/tools/Nant/lib/net/2.0/nunit.core.dll -------------------------------------------------------------------------------- /tools/Nant/lib/net/2.0/nunit.framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/tools/Nant/lib/net/2.0/nunit.framework.dll -------------------------------------------------------------------------------- /tools/Nant/lib/net/2.0/nunit.util.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/tools/Nant/lib/net/2.0/nunit.util.dll -------------------------------------------------------------------------------- /tools/Nant/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/tools/Nant/log4net.dll -------------------------------------------------------------------------------- /tools/Nant/nant.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/tools/Nant/nant.xsd -------------------------------------------------------------------------------- /tools/Nant/scvs.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/tools/Nant/scvs.exe -------------------------------------------------------------------------------- /tools/NuPack.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichexter/Should/HEAD/tools/NuPack.exe --------------------------------------------------------------------------------