├── .github ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── docs.yml ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── ContributorAgreement.txt ├── Docs ├── .gitignore ├── Blue.css ├── Comments.txt ├── Languages.txt └── Project.txt ├── LICENSE ├── README.md ├── Source ├── Addin │ ├── .gitignore │ ├── Actions │ │ ├── AddTestRunner.jsl │ │ ├── InitializeFramework.jsl │ │ ├── OpenDocumentation.jsl │ │ ├── OpenTestRunnerPreferences.jsl │ │ └── RunTests.jsl │ ├── Icons │ │ ├── clear-24px.png │ │ ├── exprfailure-32px.png │ │ ├── failure-32px.png │ │ ├── help-24px.png │ │ ├── play-24px.png │ │ ├── runner-32px.png │ │ ├── skip-32px.png │ │ ├── success-32px.png │ │ └── throw-32px.png │ ├── Reporters.jsl │ ├── TestRunner.jsl │ └── TestRunnerPreferences.jsl ├── All.jsl ├── Core │ ├── Core.jsl │ ├── MatchInfo.jsl │ ├── Matchers │ │ ├── EqualTo.jsl │ │ ├── Is.jsl │ │ ├── Matcher.jsl │ │ └── Typed.jsl │ ├── Mock.jsl │ ├── Reporters │ │ └── Reporter.jsl │ ├── TestCase.jsl │ └── Utils.jsl ├── DevAddin │ ├── .gitignore │ ├── ConfigureHome.jsl │ ├── InitializeHome.jsl │ ├── addin.def │ ├── addin.jmpcust │ └── runner-32px.png ├── Matchers-Index.txt ├── Matchers │ ├── AllOf.jsl │ ├── AnyOf.jsl │ ├── Anything.jsl │ ├── Approx.jsl │ ├── AsChar.jsl │ ├── Case.jsl │ ├── Close.jsl │ ├── Contains.jsl │ ├── Custom │ │ └── .gitignore │ ├── ElapsedTime.jsl │ ├── Empty.jsl │ ├── Every.jsl │ ├── Host.jsl │ ├── IgnoringCase.jsl │ ├── IgnoringWhitespace.jsl │ ├── InstanceOf.jsl │ ├── Log.jsl │ ├── Messages.jsl │ ├── Missing.jsl │ ├── NoThrow.jsl │ ├── Not.jsl │ ├── OS.jsl │ ├── OrderingComparison.jsl │ ├── Parse.jsl │ ├── Partial.jsl │ ├── Size.jsl │ ├── Skip.jsl │ ├── Sorted.jsl │ ├── StringPattern.jsl │ ├── Throws.jsl │ ├── TypedAs.jsl │ ├── VectorDiagonal.jsl │ └── Xml.jsl └── Reporters │ ├── CollectingReporter.jsl │ ├── CompositeReporter.jsl │ ├── Custom │ └── .gitignore │ ├── DataTableReporter.jsl │ ├── FileAppendingReporter.jsl │ ├── JunitXMLReporter.jsl │ └── StreamingLogReporter.jsl ├── Tests ├── RunTests.jsl ├── RunTestsStandalone.jsl └── UnitTests │ ├── Addin │ └── Reporters.jsl │ ├── AssertReporterInteractionTest.jsl │ ├── AssertThatTest.jsl │ ├── AssertValueTest.jsl │ ├── MatchInfoTest.jsl │ ├── MatcherFactoryTest.jsl │ ├── MatcherTest.jsl │ ├── Matchers │ ├── AllOfTest.jsl │ ├── AnyOfTest.jsl │ ├── ApproxTest.jsl │ ├── EqualToTest.jsl │ ├── ExpressionMatchesTest.jsl │ ├── IsTest.jsl │ ├── MessagesTest.jsl │ ├── SizeTest.jsl │ ├── TypedTest.jsl │ └── XmlTest.jsl │ ├── MockTest.jsl │ ├── ReporterTest.jsl │ ├── Reporters │ ├── CompositeReporter.jsl │ ├── DataTableReporterTest.jsl │ ├── FileAppendingReporterTest.jsl │ └── JunitXMLReporterTest.jsl │ ├── SkipTest.jsl │ ├── TestCaseLogBenchmarkTest.jsl │ ├── TestCaseTest.jsl │ └── UtilsTests.jsl ├── addin.def └── addin.jmpcust /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /ContributorAgreement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/ContributorAgreement.txt -------------------------------------------------------------------------------- /Docs/.gitignore: -------------------------------------------------------------------------------- 1 | Working Data 2 | _html/ 3 | -------------------------------------------------------------------------------- /Docs/Blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Docs/Blue.css -------------------------------------------------------------------------------- /Docs/Comments.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Docs/Comments.txt -------------------------------------------------------------------------------- /Docs/Languages.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Docs/Languages.txt -------------------------------------------------------------------------------- /Docs/Project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Docs/Project.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/README.md -------------------------------------------------------------------------------- /Source/Addin/.gitignore: -------------------------------------------------------------------------------- 1 | TestRunner.PFS -------------------------------------------------------------------------------- /Source/Addin/Actions/AddTestRunner.jsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Source/Addin/Actions/AddTestRunner.jsl -------------------------------------------------------------------------------- /Source/Addin/Actions/InitializeFramework.jsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Source/Addin/Actions/InitializeFramework.jsl -------------------------------------------------------------------------------- /Source/Addin/Actions/OpenDocumentation.jsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Source/Addin/Actions/OpenDocumentation.jsl -------------------------------------------------------------------------------- /Source/Addin/Actions/OpenTestRunnerPreferences.jsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Source/Addin/Actions/OpenTestRunnerPreferences.jsl -------------------------------------------------------------------------------- /Source/Addin/Actions/RunTests.jsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Source/Addin/Actions/RunTests.jsl -------------------------------------------------------------------------------- /Source/Addin/Icons/clear-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Source/Addin/Icons/clear-24px.png -------------------------------------------------------------------------------- /Source/Addin/Icons/exprfailure-32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Source/Addin/Icons/exprfailure-32px.png -------------------------------------------------------------------------------- /Source/Addin/Icons/failure-32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Source/Addin/Icons/failure-32px.png -------------------------------------------------------------------------------- /Source/Addin/Icons/help-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Source/Addin/Icons/help-24px.png -------------------------------------------------------------------------------- /Source/Addin/Icons/play-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Source/Addin/Icons/play-24px.png -------------------------------------------------------------------------------- /Source/Addin/Icons/runner-32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Source/Addin/Icons/runner-32px.png -------------------------------------------------------------------------------- /Source/Addin/Icons/skip-32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Source/Addin/Icons/skip-32px.png -------------------------------------------------------------------------------- /Source/Addin/Icons/success-32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Source/Addin/Icons/success-32px.png -------------------------------------------------------------------------------- /Source/Addin/Icons/throw-32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Source/Addin/Icons/throw-32px.png -------------------------------------------------------------------------------- /Source/Addin/Reporters.jsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Source/Addin/Reporters.jsl -------------------------------------------------------------------------------- /Source/Addin/TestRunner.jsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Source/Addin/TestRunner.jsl -------------------------------------------------------------------------------- /Source/Addin/TestRunnerPreferences.jsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Source/Addin/TestRunnerPreferences.jsl -------------------------------------------------------------------------------- /Source/All.jsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Source/All.jsl -------------------------------------------------------------------------------- /Source/Core/Core.jsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Source/Core/Core.jsl -------------------------------------------------------------------------------- /Source/Core/MatchInfo.jsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Source/Core/MatchInfo.jsl -------------------------------------------------------------------------------- /Source/Core/Matchers/EqualTo.jsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Source/Core/Matchers/EqualTo.jsl -------------------------------------------------------------------------------- /Source/Core/Matchers/Is.jsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Source/Core/Matchers/Is.jsl -------------------------------------------------------------------------------- /Source/Core/Matchers/Matcher.jsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Source/Core/Matchers/Matcher.jsl -------------------------------------------------------------------------------- /Source/Core/Matchers/Typed.jsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Source/Core/Matchers/Typed.jsl -------------------------------------------------------------------------------- /Source/Core/Mock.jsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Source/Core/Mock.jsl -------------------------------------------------------------------------------- /Source/Core/Reporters/Reporter.jsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Source/Core/Reporters/Reporter.jsl -------------------------------------------------------------------------------- /Source/Core/TestCase.jsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Source/Core/TestCase.jsl -------------------------------------------------------------------------------- /Source/Core/Utils.jsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Source/Core/Utils.jsl -------------------------------------------------------------------------------- /Source/DevAddin/.gitignore: -------------------------------------------------------------------------------- 1 | *.jmpaddin -------------------------------------------------------------------------------- /Source/DevAddin/ConfigureHome.jsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Source/DevAddin/ConfigureHome.jsl -------------------------------------------------------------------------------- /Source/DevAddin/InitializeHome.jsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Source/DevAddin/InitializeHome.jsl -------------------------------------------------------------------------------- /Source/DevAddin/addin.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Source/DevAddin/addin.def -------------------------------------------------------------------------------- /Source/DevAddin/addin.jmpcust: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Source/DevAddin/addin.jmpcust -------------------------------------------------------------------------------- /Source/DevAddin/runner-32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Source/DevAddin/runner-32px.png -------------------------------------------------------------------------------- /Source/Matchers-Index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Source/Matchers-Index.txt -------------------------------------------------------------------------------- /Source/Matchers/AllOf.jsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Source/Matchers/AllOf.jsl -------------------------------------------------------------------------------- /Source/Matchers/AnyOf.jsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Source/Matchers/AnyOf.jsl -------------------------------------------------------------------------------- /Source/Matchers/Anything.jsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Source/Matchers/Anything.jsl -------------------------------------------------------------------------------- /Source/Matchers/Approx.jsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Source/Matchers/Approx.jsl -------------------------------------------------------------------------------- /Source/Matchers/AsChar.jsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Source/Matchers/AsChar.jsl -------------------------------------------------------------------------------- /Source/Matchers/Case.jsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Source/Matchers/Case.jsl -------------------------------------------------------------------------------- /Source/Matchers/Close.jsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Source/Matchers/Close.jsl -------------------------------------------------------------------------------- /Source/Matchers/Contains.jsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Source/Matchers/Contains.jsl -------------------------------------------------------------------------------- /Source/Matchers/Custom/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Source/Matchers/Custom/.gitignore -------------------------------------------------------------------------------- /Source/Matchers/ElapsedTime.jsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Source/Matchers/ElapsedTime.jsl -------------------------------------------------------------------------------- /Source/Matchers/Empty.jsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Source/Matchers/Empty.jsl -------------------------------------------------------------------------------- /Source/Matchers/Every.jsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Source/Matchers/Every.jsl -------------------------------------------------------------------------------- /Source/Matchers/Host.jsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Source/Matchers/Host.jsl -------------------------------------------------------------------------------- /Source/Matchers/IgnoringCase.jsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Source/Matchers/IgnoringCase.jsl -------------------------------------------------------------------------------- /Source/Matchers/IgnoringWhitespace.jsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Source/Matchers/IgnoringWhitespace.jsl -------------------------------------------------------------------------------- /Source/Matchers/InstanceOf.jsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Source/Matchers/InstanceOf.jsl -------------------------------------------------------------------------------- /Source/Matchers/Log.jsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Source/Matchers/Log.jsl -------------------------------------------------------------------------------- /Source/Matchers/Messages.jsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Source/Matchers/Messages.jsl -------------------------------------------------------------------------------- /Source/Matchers/Missing.jsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Source/Matchers/Missing.jsl -------------------------------------------------------------------------------- /Source/Matchers/NoThrow.jsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Source/Matchers/NoThrow.jsl -------------------------------------------------------------------------------- /Source/Matchers/Not.jsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Source/Matchers/Not.jsl -------------------------------------------------------------------------------- /Source/Matchers/OS.jsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Source/Matchers/OS.jsl -------------------------------------------------------------------------------- /Source/Matchers/OrderingComparison.jsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Source/Matchers/OrderingComparison.jsl -------------------------------------------------------------------------------- /Source/Matchers/Parse.jsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Source/Matchers/Parse.jsl -------------------------------------------------------------------------------- /Source/Matchers/Partial.jsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Source/Matchers/Partial.jsl -------------------------------------------------------------------------------- /Source/Matchers/Size.jsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Source/Matchers/Size.jsl -------------------------------------------------------------------------------- /Source/Matchers/Skip.jsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Source/Matchers/Skip.jsl -------------------------------------------------------------------------------- /Source/Matchers/Sorted.jsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Source/Matchers/Sorted.jsl -------------------------------------------------------------------------------- /Source/Matchers/StringPattern.jsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Source/Matchers/StringPattern.jsl -------------------------------------------------------------------------------- /Source/Matchers/Throws.jsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Source/Matchers/Throws.jsl -------------------------------------------------------------------------------- /Source/Matchers/TypedAs.jsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Source/Matchers/TypedAs.jsl -------------------------------------------------------------------------------- /Source/Matchers/VectorDiagonal.jsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Source/Matchers/VectorDiagonal.jsl -------------------------------------------------------------------------------- /Source/Matchers/Xml.jsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Source/Matchers/Xml.jsl -------------------------------------------------------------------------------- /Source/Reporters/CollectingReporter.jsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Source/Reporters/CollectingReporter.jsl -------------------------------------------------------------------------------- /Source/Reporters/CompositeReporter.jsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Source/Reporters/CompositeReporter.jsl -------------------------------------------------------------------------------- /Source/Reporters/Custom/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Source/Reporters/Custom/.gitignore -------------------------------------------------------------------------------- /Source/Reporters/DataTableReporter.jsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Source/Reporters/DataTableReporter.jsl -------------------------------------------------------------------------------- /Source/Reporters/FileAppendingReporter.jsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Source/Reporters/FileAppendingReporter.jsl -------------------------------------------------------------------------------- /Source/Reporters/JunitXMLReporter.jsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Source/Reporters/JunitXMLReporter.jsl -------------------------------------------------------------------------------- /Source/Reporters/StreamingLogReporter.jsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Source/Reporters/StreamingLogReporter.jsl -------------------------------------------------------------------------------- /Tests/RunTests.jsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Tests/RunTests.jsl -------------------------------------------------------------------------------- /Tests/RunTestsStandalone.jsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Tests/RunTestsStandalone.jsl -------------------------------------------------------------------------------- /Tests/UnitTests/Addin/Reporters.jsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Tests/UnitTests/Addin/Reporters.jsl -------------------------------------------------------------------------------- /Tests/UnitTests/AssertReporterInteractionTest.jsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Tests/UnitTests/AssertReporterInteractionTest.jsl -------------------------------------------------------------------------------- /Tests/UnitTests/AssertThatTest.jsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Tests/UnitTests/AssertThatTest.jsl -------------------------------------------------------------------------------- /Tests/UnitTests/AssertValueTest.jsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Tests/UnitTests/AssertValueTest.jsl -------------------------------------------------------------------------------- /Tests/UnitTests/MatchInfoTest.jsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Tests/UnitTests/MatchInfoTest.jsl -------------------------------------------------------------------------------- /Tests/UnitTests/MatcherFactoryTest.jsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Tests/UnitTests/MatcherFactoryTest.jsl -------------------------------------------------------------------------------- /Tests/UnitTests/MatcherTest.jsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Tests/UnitTests/MatcherTest.jsl -------------------------------------------------------------------------------- /Tests/UnitTests/Matchers/AllOfTest.jsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Tests/UnitTests/Matchers/AllOfTest.jsl -------------------------------------------------------------------------------- /Tests/UnitTests/Matchers/AnyOfTest.jsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Tests/UnitTests/Matchers/AnyOfTest.jsl -------------------------------------------------------------------------------- /Tests/UnitTests/Matchers/ApproxTest.jsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Tests/UnitTests/Matchers/ApproxTest.jsl -------------------------------------------------------------------------------- /Tests/UnitTests/Matchers/EqualToTest.jsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Tests/UnitTests/Matchers/EqualToTest.jsl -------------------------------------------------------------------------------- /Tests/UnitTests/Matchers/ExpressionMatchesTest.jsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Tests/UnitTests/Matchers/ExpressionMatchesTest.jsl -------------------------------------------------------------------------------- /Tests/UnitTests/Matchers/IsTest.jsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Tests/UnitTests/Matchers/IsTest.jsl -------------------------------------------------------------------------------- /Tests/UnitTests/Matchers/MessagesTest.jsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Tests/UnitTests/Matchers/MessagesTest.jsl -------------------------------------------------------------------------------- /Tests/UnitTests/Matchers/SizeTest.jsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Tests/UnitTests/Matchers/SizeTest.jsl -------------------------------------------------------------------------------- /Tests/UnitTests/Matchers/TypedTest.jsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Tests/UnitTests/Matchers/TypedTest.jsl -------------------------------------------------------------------------------- /Tests/UnitTests/Matchers/XmlTest.jsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Tests/UnitTests/Matchers/XmlTest.jsl -------------------------------------------------------------------------------- /Tests/UnitTests/MockTest.jsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Tests/UnitTests/MockTest.jsl -------------------------------------------------------------------------------- /Tests/UnitTests/ReporterTest.jsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Tests/UnitTests/ReporterTest.jsl -------------------------------------------------------------------------------- /Tests/UnitTests/Reporters/CompositeReporter.jsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Tests/UnitTests/Reporters/CompositeReporter.jsl -------------------------------------------------------------------------------- /Tests/UnitTests/Reporters/DataTableReporterTest.jsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Tests/UnitTests/Reporters/DataTableReporterTest.jsl -------------------------------------------------------------------------------- /Tests/UnitTests/Reporters/FileAppendingReporterTest.jsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Tests/UnitTests/Reporters/FileAppendingReporterTest.jsl -------------------------------------------------------------------------------- /Tests/UnitTests/Reporters/JunitXMLReporterTest.jsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Tests/UnitTests/Reporters/JunitXMLReporterTest.jsl -------------------------------------------------------------------------------- /Tests/UnitTests/SkipTest.jsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Tests/UnitTests/SkipTest.jsl -------------------------------------------------------------------------------- /Tests/UnitTests/TestCaseLogBenchmarkTest.jsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Tests/UnitTests/TestCaseLogBenchmarkTest.jsl -------------------------------------------------------------------------------- /Tests/UnitTests/TestCaseTest.jsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Tests/UnitTests/TestCaseTest.jsl -------------------------------------------------------------------------------- /Tests/UnitTests/UtilsTests.jsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/Tests/UnitTests/UtilsTests.jsl -------------------------------------------------------------------------------- /addin.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/addin.def -------------------------------------------------------------------------------- /addin.jmpcust: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/jsl-hamcrest/HEAD/addin.jmpcust --------------------------------------------------------------------------------