├── .config └── dotnet-tools.json ├── .github └── workflows │ └── build_and_test.yml ├── .gitignore ├── .paket └── Paket.Restore.targets ├── .travis.yml ├── FAKE.PersimmonConsole.fsx ├── Fake.DotNet.Testing.Persimmon.fsx ├── LICENSE ├── Persimmon.sln ├── Persimmon.snk ├── README.md ├── RELEASE_NOTES.md ├── appveyor.yml ├── docs ├── content │ ├── Features.fsx │ ├── GettingStarted.fsx │ ├── index.fsx │ └── ja │ │ ├── Features.fsx │ │ ├── GettingStarted.fsx │ │ └── index.fsx ├── files │ └── content │ │ ├── font.css │ │ └── tips.js └── tools │ └── templates │ ├── ja │ └── template.cshtml │ └── template.cshtml ├── examples └── Persimmon.Sample │ ├── App.config │ ├── Persimmon.Sample.fsproj │ ├── Sample.fs │ └── paket.references ├── fake.cmd ├── fake.sh ├── generate.fsx ├── paket.dependencies ├── paket.lock ├── src ├── Persimmon.Console │ ├── App.config │ ├── AssemblyInfo.fs │ ├── Persimmon.Console.fsproj │ ├── Program.fs │ ├── paket.references │ └── paket.template ├── Persimmon.Runner │ ├── AssemblyInfo.fs │ ├── Console │ │ ├── Args.fs │ │ ├── Runner.fs │ │ └── RunnerStrategy.fs │ ├── Output │ │ ├── Formatter.fs │ │ ├── Printer.fs │ │ ├── Reporter.fs │ │ └── Writable.fs │ ├── Persimmon.Runner.fsproj │ ├── paket.references │ └── paket.template └── Persimmon │ ├── ActivePatterns.fs │ ├── AssemblyInfo.fs │ ├── Assertions.fs │ ├── AsyncLazy.fs │ ├── ComputationExpressions.fs │ ├── Internals │ ├── Attributes.fs │ ├── RuntimeUtil.fs │ ├── TestCollector.fs │ ├── TestFilter.fs │ ├── TestManager.fs │ └── TestRunner.fs │ ├── NonEmptyList.fs │ ├── NonEmptyList.fsi │ ├── Persimmon.fsproj │ ├── PrettyPrinter.fs │ ├── ResultNode.fs │ ├── Syntax.fs │ ├── TestCase.fs │ ├── TestResult.fs │ ├── Types.fs │ ├── paket.references │ └── paket.template └── tests ├── Persimmon.FS41.Tests ├── AssertionTest.fs ├── Persimmon.FS41.Tests.fsproj ├── Program.fs └── paket.references ├── Persimmon.Net462.FS5.Tests ├── AppDomainTest.fs ├── Persimmon.Net462.FS5.Tests.fsproj ├── Test.fs ├── app.config └── paket.references ├── Persimmon.Net462.FS6.Tests ├── AppDomainTest.fs ├── Persimmon.Net462.FS6.Tests.fsproj ├── Test.fs ├── app.config └── paket.references ├── Persimmon.Runner.Tests ├── FormatterTest.fs ├── Persimmon.Runner.Tests.fsproj ├── Program.fs ├── app.config └── paket.references └── Persimmon.Tests ├── AssertionResultTest.fs ├── AsyncTest.fs ├── Helper.fs ├── MetadataTest.fs ├── Persimmon.Tests.fsproj ├── PersimmonTest.fs ├── PrettyPrinterTest.fs ├── Program.fs ├── ResultNodeTest.fs ├── RunnerTest.fs ├── SideEffectTest.fs ├── TestCollectorTest.fs ├── TestFilterTest.fs ├── TrapTest.fs └── paket.references /.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/.config/dotnet-tools.json -------------------------------------------------------------------------------- /.github/workflows/build_and_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/.github/workflows/build_and_test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/.gitignore -------------------------------------------------------------------------------- /.paket/Paket.Restore.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/.paket/Paket.Restore.targets -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/.travis.yml -------------------------------------------------------------------------------- /FAKE.PersimmonConsole.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/FAKE.PersimmonConsole.fsx -------------------------------------------------------------------------------- /Fake.DotNet.Testing.Persimmon.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/Fake.DotNet.Testing.Persimmon.fsx -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/LICENSE -------------------------------------------------------------------------------- /Persimmon.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/Persimmon.sln -------------------------------------------------------------------------------- /Persimmon.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/Persimmon.snk -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE_NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/RELEASE_NOTES.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/appveyor.yml -------------------------------------------------------------------------------- /docs/content/Features.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/docs/content/Features.fsx -------------------------------------------------------------------------------- /docs/content/GettingStarted.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/docs/content/GettingStarted.fsx -------------------------------------------------------------------------------- /docs/content/index.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/docs/content/index.fsx -------------------------------------------------------------------------------- /docs/content/ja/Features.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/docs/content/ja/Features.fsx -------------------------------------------------------------------------------- /docs/content/ja/GettingStarted.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/docs/content/ja/GettingStarted.fsx -------------------------------------------------------------------------------- /docs/content/ja/index.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/docs/content/ja/index.fsx -------------------------------------------------------------------------------- /docs/files/content/font.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/docs/files/content/font.css -------------------------------------------------------------------------------- /docs/files/content/tips.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/docs/files/content/tips.js -------------------------------------------------------------------------------- /docs/tools/templates/ja/template.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/docs/tools/templates/ja/template.cshtml -------------------------------------------------------------------------------- /docs/tools/templates/template.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/docs/tools/templates/template.cshtml -------------------------------------------------------------------------------- /examples/Persimmon.Sample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/examples/Persimmon.Sample/App.config -------------------------------------------------------------------------------- /examples/Persimmon.Sample/Persimmon.Sample.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/examples/Persimmon.Sample/Persimmon.Sample.fsproj -------------------------------------------------------------------------------- /examples/Persimmon.Sample/Sample.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/examples/Persimmon.Sample/Sample.fs -------------------------------------------------------------------------------- /examples/Persimmon.Sample/paket.references: -------------------------------------------------------------------------------- 1 | group Latest 2 | FSharp.Core 3 | -------------------------------------------------------------------------------- /fake.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/fake.cmd -------------------------------------------------------------------------------- /fake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/fake.sh -------------------------------------------------------------------------------- /generate.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/generate.fsx -------------------------------------------------------------------------------- /paket.dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/paket.dependencies -------------------------------------------------------------------------------- /paket.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/paket.lock -------------------------------------------------------------------------------- /src/Persimmon.Console/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/src/Persimmon.Console/App.config -------------------------------------------------------------------------------- /src/Persimmon.Console/AssemblyInfo.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/src/Persimmon.Console/AssemblyInfo.fs -------------------------------------------------------------------------------- /src/Persimmon.Console/Persimmon.Console.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/src/Persimmon.Console/Persimmon.Console.fsproj -------------------------------------------------------------------------------- /src/Persimmon.Console/Program.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/src/Persimmon.Console/Program.fs -------------------------------------------------------------------------------- /src/Persimmon.Console/paket.references: -------------------------------------------------------------------------------- 1 | group Latest 2 | FSharp.Core 3 | -------------------------------------------------------------------------------- /src/Persimmon.Console/paket.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/src/Persimmon.Console/paket.template -------------------------------------------------------------------------------- /src/Persimmon.Runner/AssemblyInfo.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/src/Persimmon.Runner/AssemblyInfo.fs -------------------------------------------------------------------------------- /src/Persimmon.Runner/Console/Args.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/src/Persimmon.Runner/Console/Args.fs -------------------------------------------------------------------------------- /src/Persimmon.Runner/Console/Runner.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/src/Persimmon.Runner/Console/Runner.fs -------------------------------------------------------------------------------- /src/Persimmon.Runner/Console/RunnerStrategy.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/src/Persimmon.Runner/Console/RunnerStrategy.fs -------------------------------------------------------------------------------- /src/Persimmon.Runner/Output/Formatter.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/src/Persimmon.Runner/Output/Formatter.fs -------------------------------------------------------------------------------- /src/Persimmon.Runner/Output/Printer.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/src/Persimmon.Runner/Output/Printer.fs -------------------------------------------------------------------------------- /src/Persimmon.Runner/Output/Reporter.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/src/Persimmon.Runner/Output/Reporter.fs -------------------------------------------------------------------------------- /src/Persimmon.Runner/Output/Writable.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/src/Persimmon.Runner/Output/Writable.fs -------------------------------------------------------------------------------- /src/Persimmon.Runner/Persimmon.Runner.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/src/Persimmon.Runner/Persimmon.Runner.fsproj -------------------------------------------------------------------------------- /src/Persimmon.Runner/paket.references: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/src/Persimmon.Runner/paket.references -------------------------------------------------------------------------------- /src/Persimmon.Runner/paket.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/src/Persimmon.Runner/paket.template -------------------------------------------------------------------------------- /src/Persimmon/ActivePatterns.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/src/Persimmon/ActivePatterns.fs -------------------------------------------------------------------------------- /src/Persimmon/AssemblyInfo.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/src/Persimmon/AssemblyInfo.fs -------------------------------------------------------------------------------- /src/Persimmon/Assertions.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/src/Persimmon/Assertions.fs -------------------------------------------------------------------------------- /src/Persimmon/AsyncLazy.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/src/Persimmon/AsyncLazy.fs -------------------------------------------------------------------------------- /src/Persimmon/ComputationExpressions.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/src/Persimmon/ComputationExpressions.fs -------------------------------------------------------------------------------- /src/Persimmon/Internals/Attributes.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/src/Persimmon/Internals/Attributes.fs -------------------------------------------------------------------------------- /src/Persimmon/Internals/RuntimeUtil.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/src/Persimmon/Internals/RuntimeUtil.fs -------------------------------------------------------------------------------- /src/Persimmon/Internals/TestCollector.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/src/Persimmon/Internals/TestCollector.fs -------------------------------------------------------------------------------- /src/Persimmon/Internals/TestFilter.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/src/Persimmon/Internals/TestFilter.fs -------------------------------------------------------------------------------- /src/Persimmon/Internals/TestManager.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/src/Persimmon/Internals/TestManager.fs -------------------------------------------------------------------------------- /src/Persimmon/Internals/TestRunner.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/src/Persimmon/Internals/TestRunner.fs -------------------------------------------------------------------------------- /src/Persimmon/NonEmptyList.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/src/Persimmon/NonEmptyList.fs -------------------------------------------------------------------------------- /src/Persimmon/NonEmptyList.fsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/src/Persimmon/NonEmptyList.fsi -------------------------------------------------------------------------------- /src/Persimmon/Persimmon.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/src/Persimmon/Persimmon.fsproj -------------------------------------------------------------------------------- /src/Persimmon/PrettyPrinter.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/src/Persimmon/PrettyPrinter.fs -------------------------------------------------------------------------------- /src/Persimmon/ResultNode.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/src/Persimmon/ResultNode.fs -------------------------------------------------------------------------------- /src/Persimmon/Syntax.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/src/Persimmon/Syntax.fs -------------------------------------------------------------------------------- /src/Persimmon/TestCase.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/src/Persimmon/TestCase.fs -------------------------------------------------------------------------------- /src/Persimmon/TestResult.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/src/Persimmon/TestResult.fs -------------------------------------------------------------------------------- /src/Persimmon/Types.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/src/Persimmon/Types.fs -------------------------------------------------------------------------------- /src/Persimmon/paket.references: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/src/Persimmon/paket.references -------------------------------------------------------------------------------- /src/Persimmon/paket.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/src/Persimmon/paket.template -------------------------------------------------------------------------------- /tests/Persimmon.FS41.Tests/AssertionTest.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/tests/Persimmon.FS41.Tests/AssertionTest.fs -------------------------------------------------------------------------------- /tests/Persimmon.FS41.Tests/Persimmon.FS41.Tests.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/tests/Persimmon.FS41.Tests/Persimmon.FS41.Tests.fsproj -------------------------------------------------------------------------------- /tests/Persimmon.FS41.Tests/Program.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/tests/Persimmon.FS41.Tests/Program.fs -------------------------------------------------------------------------------- /tests/Persimmon.FS41.Tests/paket.references: -------------------------------------------------------------------------------- 1 | group Latest 2 | FSharp.Core 3 | -------------------------------------------------------------------------------- /tests/Persimmon.Net462.FS5.Tests/AppDomainTest.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/tests/Persimmon.Net462.FS5.Tests/AppDomainTest.fs -------------------------------------------------------------------------------- /tests/Persimmon.Net462.FS5.Tests/Persimmon.Net462.FS5.Tests.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/tests/Persimmon.Net462.FS5.Tests/Persimmon.Net462.FS5.Tests.fsproj -------------------------------------------------------------------------------- /tests/Persimmon.Net462.FS5.Tests/Test.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/tests/Persimmon.Net462.FS5.Tests/Test.fs -------------------------------------------------------------------------------- /tests/Persimmon.Net462.FS5.Tests/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/tests/Persimmon.Net462.FS5.Tests/app.config -------------------------------------------------------------------------------- /tests/Persimmon.Net462.FS5.Tests/paket.references: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/tests/Persimmon.Net462.FS5.Tests/paket.references -------------------------------------------------------------------------------- /tests/Persimmon.Net462.FS6.Tests/AppDomainTest.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/tests/Persimmon.Net462.FS6.Tests/AppDomainTest.fs -------------------------------------------------------------------------------- /tests/Persimmon.Net462.FS6.Tests/Persimmon.Net462.FS6.Tests.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/tests/Persimmon.Net462.FS6.Tests/Persimmon.Net462.FS6.Tests.fsproj -------------------------------------------------------------------------------- /tests/Persimmon.Net462.FS6.Tests/Test.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/tests/Persimmon.Net462.FS6.Tests/Test.fs -------------------------------------------------------------------------------- /tests/Persimmon.Net462.FS6.Tests/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/tests/Persimmon.Net462.FS6.Tests/app.config -------------------------------------------------------------------------------- /tests/Persimmon.Net462.FS6.Tests/paket.references: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/tests/Persimmon.Net462.FS6.Tests/paket.references -------------------------------------------------------------------------------- /tests/Persimmon.Runner.Tests/FormatterTest.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/tests/Persimmon.Runner.Tests/FormatterTest.fs -------------------------------------------------------------------------------- /tests/Persimmon.Runner.Tests/Persimmon.Runner.Tests.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/tests/Persimmon.Runner.Tests/Persimmon.Runner.Tests.fsproj -------------------------------------------------------------------------------- /tests/Persimmon.Runner.Tests/Program.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/tests/Persimmon.Runner.Tests/Program.fs -------------------------------------------------------------------------------- /tests/Persimmon.Runner.Tests/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/tests/Persimmon.Runner.Tests/app.config -------------------------------------------------------------------------------- /tests/Persimmon.Runner.Tests/paket.references: -------------------------------------------------------------------------------- 1 | group Latest 2 | FSharp.Core 3 | -------------------------------------------------------------------------------- /tests/Persimmon.Tests/AssertionResultTest.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/tests/Persimmon.Tests/AssertionResultTest.fs -------------------------------------------------------------------------------- /tests/Persimmon.Tests/AsyncTest.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/tests/Persimmon.Tests/AsyncTest.fs -------------------------------------------------------------------------------- /tests/Persimmon.Tests/Helper.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/tests/Persimmon.Tests/Helper.fs -------------------------------------------------------------------------------- /tests/Persimmon.Tests/MetadataTest.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/tests/Persimmon.Tests/MetadataTest.fs -------------------------------------------------------------------------------- /tests/Persimmon.Tests/Persimmon.Tests.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/tests/Persimmon.Tests/Persimmon.Tests.fsproj -------------------------------------------------------------------------------- /tests/Persimmon.Tests/PersimmonTest.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/tests/Persimmon.Tests/PersimmonTest.fs -------------------------------------------------------------------------------- /tests/Persimmon.Tests/PrettyPrinterTest.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/tests/Persimmon.Tests/PrettyPrinterTest.fs -------------------------------------------------------------------------------- /tests/Persimmon.Tests/Program.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/tests/Persimmon.Tests/Program.fs -------------------------------------------------------------------------------- /tests/Persimmon.Tests/ResultNodeTest.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/tests/Persimmon.Tests/ResultNodeTest.fs -------------------------------------------------------------------------------- /tests/Persimmon.Tests/RunnerTest.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/tests/Persimmon.Tests/RunnerTest.fs -------------------------------------------------------------------------------- /tests/Persimmon.Tests/SideEffectTest.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/tests/Persimmon.Tests/SideEffectTest.fs -------------------------------------------------------------------------------- /tests/Persimmon.Tests/TestCollectorTest.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/tests/Persimmon.Tests/TestCollectorTest.fs -------------------------------------------------------------------------------- /tests/Persimmon.Tests/TestFilterTest.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/tests/Persimmon.Tests/TestFilterTest.fs -------------------------------------------------------------------------------- /tests/Persimmon.Tests/TrapTest.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persimmon-projects/Persimmon/HEAD/tests/Persimmon.Tests/TrapTest.fs -------------------------------------------------------------------------------- /tests/Persimmon.Tests/paket.references: -------------------------------------------------------------------------------- 1 | group Latest 2 | FSharp.Core 3 | --------------------------------------------------------------------------------