├── .config └── dotnet-tools.json ├── .gitattributes ├── .github └── workflows │ ├── main.yml │ └── release.yml ├── .gitignore ├── Directory.Build.props ├── Examples ├── ByFeature │ ├── CustomContainer │ │ ├── CustomContainer.fsproj │ │ ├── CustomContainerFeature.fs │ │ ├── Domain.fs │ │ ├── Shelter.feature │ │ ├── ShelterSteps.fs │ │ └── XunitAutofacWiring.fs │ ├── DependencyInjection │ │ ├── BowlSteps.fs │ │ ├── Dependency.feature │ │ ├── DependencyInjection.fsproj │ │ ├── DogFeeding.feature │ │ ├── DogSteps.fs │ │ ├── Domain.fs │ │ ├── FeedingSteps.fs │ │ └── NunitWiring.fs │ ├── FunctionalInjection │ │ ├── BowlSteps.fs │ │ ├── Computer.fs │ │ ├── ComputerHeating.feature │ │ ├── Dependency.feature │ │ ├── DogFeeding.feature │ │ ├── DogSteps.fs │ │ ├── Domain.fs │ │ ├── FeedingSteps.fs │ │ ├── FunctionalInjection.fsproj │ │ ├── Logger.fs │ │ ├── NunitWiring.fs │ │ ├── Room.fs │ │ ├── ScenarioMetadata.feature │ │ ├── ScenarioMetadataSteps.fs │ │ ├── Shopping.feature │ │ ├── ShoppingSteps.fs │ │ ├── Stock.feature │ │ ├── StockItem.fs │ │ ├── StockSteps.fs │ │ ├── Wallet.feature │ │ └── WalletSteps.fs │ └── TaggedExamples │ │ ├── FeatureFixture.fs │ │ ├── HttpServer.feature │ │ ├── HttpServerSteps.fs │ │ ├── TaggedExamples.fsproj │ │ ├── WebTesting.feature │ │ ├── WebTestingSteps.fs │ │ └── paket.references ├── ByFramework │ ├── CommandLine │ │ ├── CSharp │ │ │ ├── CSharp.csproj │ │ │ ├── Feature.txt │ │ │ ├── Program.cs │ │ │ ├── StockItem.cs │ │ │ └── StockStepDefinitions.cs │ │ ├── FSharp │ │ │ ├── FSharp.fsproj │ │ │ ├── Feature.txt │ │ │ ├── Program.fs │ │ │ ├── StockItem.fs │ │ │ └── StockStepDefinitions.fs │ │ └── TicTacToe │ │ │ ├── Program.fs │ │ │ ├── TicTacToe.fsproj │ │ │ ├── TicTacToeStepDefinitions.fs │ │ │ └── TicTacToeXO.txt │ ├── Expecto │ │ └── FSharp.Expecto │ │ │ ├── Addition.feature │ │ │ ├── AdditionSteps.fs │ │ │ ├── CalculatorDomain.fs │ │ │ ├── Expecto.FSharp.fsproj │ │ │ ├── Program.fs │ │ │ ├── Retail.fs │ │ │ ├── Stock.feature │ │ │ └── StockSteps.fs │ ├── MSTest │ │ └── MSTest.FSharp │ │ │ ├── MSTest.FSharp.fsproj │ │ │ ├── MSTestWiring.fs │ │ │ ├── Stock.feature │ │ │ ├── StockItem.fs │ │ │ └── StockSteps.fs │ ├── NUnit │ │ ├── CSharp.NUnit │ │ │ ├── NUnit.CSharp.csproj │ │ │ ├── NUnitWiring.cs │ │ │ ├── Stock.feature │ │ │ ├── StockItem.cs │ │ │ └── StockSteps.cs │ │ └── FSharp.NUnit │ │ │ ├── FeatureFixture.fs │ │ │ ├── NUnit.FSharp.fsproj │ │ │ ├── Stock.feature │ │ │ ├── StockItem.fs │ │ │ ├── StockSteps.fs │ │ │ ├── TicTacToe.feature │ │ │ └── TicTacToeSteps.fs │ └── xUnit │ │ └── FSharp.xUnit │ │ ├── Addition.feature │ │ ├── AdditionSteps.fs │ │ ├── CalculatorDomain.fs │ │ ├── Retail.fs │ │ ├── Stock.feature │ │ ├── StockSteps.fs │ │ ├── Xunit.FSharp.fsproj │ │ ├── XunitFeature.fs │ │ └── packages.config ├── ByStyle │ ├── Attributes │ │ ├── Addition.feature │ │ ├── AdditionSteps.fs │ │ ├── ApplesAndPies.feature │ │ ├── ApplesAndPiesSteps.fs │ │ ├── Atm.feature │ │ ├── Atm.fs │ │ ├── AtmSteps.fs │ │ ├── Attributes.fsproj │ │ ├── BulletTime.feature │ │ ├── BulletTimeSteps.fs │ │ ├── Calculator.fs │ │ ├── Coffee.feature │ │ ├── CoffeeSteps.fs │ │ ├── FeatureFixture.fs │ │ ├── Fight.feature │ │ ├── FightSteps.fs │ │ ├── ImpliedPrice.feature │ │ ├── ImpliedPrice.fs │ │ ├── Killer.feature │ │ ├── KillerSteps.fs │ │ ├── MorningDew.feature │ │ ├── MorningDewSteps.fs │ │ ├── Pacman.feature │ │ ├── PacmanSteps.fs │ │ ├── Prelude.fs │ │ ├── ReadMe.txt │ │ ├── Scrabble.feature │ │ ├── Scrabble.fs │ │ ├── ScrabbleSteps.fs │ │ ├── Skill.feature │ │ ├── SkillSteps.fs │ │ ├── ValetParking.feature │ │ └── ValetParkingSteps.fs │ ├── Functional │ │ ├── Addition.txt │ │ ├── AdditionSteps.fs │ │ ├── FeatureFixture.fs │ │ ├── Functional.fs │ │ ├── Functional.fsproj │ │ ├── Hangman.feature │ │ ├── Hangman.fs │ │ ├── HangmanSteps.fs │ │ ├── Scrabble.feature │ │ ├── Scrabble.fs │ │ └── ScrabbleSteps.fs │ └── Interactive │ │ ├── Calculator.fs │ │ ├── Interactive.fsproj │ │ └── StoryRunner.fs └── Directory.Build.props ├── LICENSE.txt ├── Nuget ├── NUnit │ ├── TickSpec.NUnit.nuspec │ └── content │ │ ├── Fixtures.fs │ │ ├── Stock.feature │ │ └── StockStepDefinitions.fs └── xUnit │ ├── TickSpec.xUnit.nuspec │ └── content │ ├── Stock.feature │ ├── StockStepDefinitions.fs │ ├── XunitFeature.fs │ └── XunitWiring.fs ├── README.md ├── RELEASE_NOTES.md ├── TickSpec.Tests ├── FeatureParserTest.fs ├── PlaceholdersInItems.feature ├── TagsAndExamples.feature ├── TickSpec.Tests.fsproj └── WithItems.feature ├── TickSpec.sln ├── TickSpec ├── AssemblyInfo.fs ├── BlockParser.fs ├── EventAttributes.fs ├── Exceptions.fs ├── Extensions.fs ├── Feature.fs ├── FeatureGen.fs ├── FeatureParser.fs ├── FeatureSource.fs ├── LineParser.fs ├── ScenarioGen.fs ├── ScenarioRun.fs ├── ScopeAttributes.fs ├── ServiceProvider.fs ├── StepAttributes.fs ├── TickSpec.fs └── TickSpec.fsproj ├── Wiring ├── Directory.Build.props ├── Directory.Build.targets └── TickSpec.Xunit │ ├── FeatureSetup.fs │ └── TickSpec.Xunit.fsproj └── netfx.props /.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/.config/dotnet-tools.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/.gitignore -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Examples/ByFeature/CustomContainer/CustomContainer.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByFeature/CustomContainer/CustomContainer.fsproj -------------------------------------------------------------------------------- /Examples/ByFeature/CustomContainer/CustomContainerFeature.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByFeature/CustomContainer/CustomContainerFeature.fs -------------------------------------------------------------------------------- /Examples/ByFeature/CustomContainer/Domain.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByFeature/CustomContainer/Domain.fs -------------------------------------------------------------------------------- /Examples/ByFeature/CustomContainer/Shelter.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByFeature/CustomContainer/Shelter.feature -------------------------------------------------------------------------------- /Examples/ByFeature/CustomContainer/ShelterSteps.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByFeature/CustomContainer/ShelterSteps.fs -------------------------------------------------------------------------------- /Examples/ByFeature/CustomContainer/XunitAutofacWiring.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByFeature/CustomContainer/XunitAutofacWiring.fs -------------------------------------------------------------------------------- /Examples/ByFeature/DependencyInjection/BowlSteps.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByFeature/DependencyInjection/BowlSteps.fs -------------------------------------------------------------------------------- /Examples/ByFeature/DependencyInjection/Dependency.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByFeature/DependencyInjection/Dependency.feature -------------------------------------------------------------------------------- /Examples/ByFeature/DependencyInjection/DependencyInjection.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByFeature/DependencyInjection/DependencyInjection.fsproj -------------------------------------------------------------------------------- /Examples/ByFeature/DependencyInjection/DogFeeding.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByFeature/DependencyInjection/DogFeeding.feature -------------------------------------------------------------------------------- /Examples/ByFeature/DependencyInjection/DogSteps.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByFeature/DependencyInjection/DogSteps.fs -------------------------------------------------------------------------------- /Examples/ByFeature/DependencyInjection/Domain.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByFeature/DependencyInjection/Domain.fs -------------------------------------------------------------------------------- /Examples/ByFeature/DependencyInjection/FeedingSteps.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByFeature/DependencyInjection/FeedingSteps.fs -------------------------------------------------------------------------------- /Examples/ByFeature/DependencyInjection/NunitWiring.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByFeature/DependencyInjection/NunitWiring.fs -------------------------------------------------------------------------------- /Examples/ByFeature/FunctionalInjection/BowlSteps.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByFeature/FunctionalInjection/BowlSteps.fs -------------------------------------------------------------------------------- /Examples/ByFeature/FunctionalInjection/Computer.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByFeature/FunctionalInjection/Computer.fs -------------------------------------------------------------------------------- /Examples/ByFeature/FunctionalInjection/ComputerHeating.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByFeature/FunctionalInjection/ComputerHeating.feature -------------------------------------------------------------------------------- /Examples/ByFeature/FunctionalInjection/Dependency.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByFeature/FunctionalInjection/Dependency.feature -------------------------------------------------------------------------------- /Examples/ByFeature/FunctionalInjection/DogFeeding.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByFeature/FunctionalInjection/DogFeeding.feature -------------------------------------------------------------------------------- /Examples/ByFeature/FunctionalInjection/DogSteps.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByFeature/FunctionalInjection/DogSteps.fs -------------------------------------------------------------------------------- /Examples/ByFeature/FunctionalInjection/Domain.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByFeature/FunctionalInjection/Domain.fs -------------------------------------------------------------------------------- /Examples/ByFeature/FunctionalInjection/FeedingSteps.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByFeature/FunctionalInjection/FeedingSteps.fs -------------------------------------------------------------------------------- /Examples/ByFeature/FunctionalInjection/FunctionalInjection.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByFeature/FunctionalInjection/FunctionalInjection.fsproj -------------------------------------------------------------------------------- /Examples/ByFeature/FunctionalInjection/Logger.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByFeature/FunctionalInjection/Logger.fs -------------------------------------------------------------------------------- /Examples/ByFeature/FunctionalInjection/NunitWiring.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByFeature/FunctionalInjection/NunitWiring.fs -------------------------------------------------------------------------------- /Examples/ByFeature/FunctionalInjection/Room.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByFeature/FunctionalInjection/Room.fs -------------------------------------------------------------------------------- /Examples/ByFeature/FunctionalInjection/ScenarioMetadata.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByFeature/FunctionalInjection/ScenarioMetadata.feature -------------------------------------------------------------------------------- /Examples/ByFeature/FunctionalInjection/ScenarioMetadataSteps.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByFeature/FunctionalInjection/ScenarioMetadataSteps.fs -------------------------------------------------------------------------------- /Examples/ByFeature/FunctionalInjection/Shopping.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByFeature/FunctionalInjection/Shopping.feature -------------------------------------------------------------------------------- /Examples/ByFeature/FunctionalInjection/ShoppingSteps.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByFeature/FunctionalInjection/ShoppingSteps.fs -------------------------------------------------------------------------------- /Examples/ByFeature/FunctionalInjection/Stock.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByFeature/FunctionalInjection/Stock.feature -------------------------------------------------------------------------------- /Examples/ByFeature/FunctionalInjection/StockItem.fs: -------------------------------------------------------------------------------- 1 | namespace Retail 2 | 3 | type StockItem = { Count : int } -------------------------------------------------------------------------------- /Examples/ByFeature/FunctionalInjection/StockSteps.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByFeature/FunctionalInjection/StockSteps.fs -------------------------------------------------------------------------------- /Examples/ByFeature/FunctionalInjection/Wallet.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByFeature/FunctionalInjection/Wallet.feature -------------------------------------------------------------------------------- /Examples/ByFeature/FunctionalInjection/WalletSteps.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByFeature/FunctionalInjection/WalletSteps.fs -------------------------------------------------------------------------------- /Examples/ByFeature/TaggedExamples/FeatureFixture.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByFeature/TaggedExamples/FeatureFixture.fs -------------------------------------------------------------------------------- /Examples/ByFeature/TaggedExamples/HttpServer.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByFeature/TaggedExamples/HttpServer.feature -------------------------------------------------------------------------------- /Examples/ByFeature/TaggedExamples/HttpServerSteps.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByFeature/TaggedExamples/HttpServerSteps.fs -------------------------------------------------------------------------------- /Examples/ByFeature/TaggedExamples/TaggedExamples.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByFeature/TaggedExamples/TaggedExamples.fsproj -------------------------------------------------------------------------------- /Examples/ByFeature/TaggedExamples/WebTesting.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByFeature/TaggedExamples/WebTesting.feature -------------------------------------------------------------------------------- /Examples/ByFeature/TaggedExamples/WebTestingSteps.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByFeature/TaggedExamples/WebTestingSteps.fs -------------------------------------------------------------------------------- /Examples/ByFeature/TaggedExamples/paket.references: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByFeature/TaggedExamples/paket.references -------------------------------------------------------------------------------- /Examples/ByFramework/CommandLine/CSharp/CSharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByFramework/CommandLine/CSharp/CSharp.csproj -------------------------------------------------------------------------------- /Examples/ByFramework/CommandLine/CSharp/Feature.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByFramework/CommandLine/CSharp/Feature.txt -------------------------------------------------------------------------------- /Examples/ByFramework/CommandLine/CSharp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByFramework/CommandLine/CSharp/Program.cs -------------------------------------------------------------------------------- /Examples/ByFramework/CommandLine/CSharp/StockItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByFramework/CommandLine/CSharp/StockItem.cs -------------------------------------------------------------------------------- /Examples/ByFramework/CommandLine/CSharp/StockStepDefinitions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByFramework/CommandLine/CSharp/StockStepDefinitions.cs -------------------------------------------------------------------------------- /Examples/ByFramework/CommandLine/FSharp/FSharp.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByFramework/CommandLine/FSharp/FSharp.fsproj -------------------------------------------------------------------------------- /Examples/ByFramework/CommandLine/FSharp/Feature.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByFramework/CommandLine/FSharp/Feature.txt -------------------------------------------------------------------------------- /Examples/ByFramework/CommandLine/FSharp/Program.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByFramework/CommandLine/FSharp/Program.fs -------------------------------------------------------------------------------- /Examples/ByFramework/CommandLine/FSharp/StockItem.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByFramework/CommandLine/FSharp/StockItem.fs -------------------------------------------------------------------------------- /Examples/ByFramework/CommandLine/FSharp/StockStepDefinitions.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByFramework/CommandLine/FSharp/StockStepDefinitions.fs -------------------------------------------------------------------------------- /Examples/ByFramework/CommandLine/TicTacToe/Program.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByFramework/CommandLine/TicTacToe/Program.fs -------------------------------------------------------------------------------- /Examples/ByFramework/CommandLine/TicTacToe/TicTacToe.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByFramework/CommandLine/TicTacToe/TicTacToe.fsproj -------------------------------------------------------------------------------- /Examples/ByFramework/CommandLine/TicTacToe/TicTacToeStepDefinitions.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByFramework/CommandLine/TicTacToe/TicTacToeStepDefinitions.fs -------------------------------------------------------------------------------- /Examples/ByFramework/CommandLine/TicTacToe/TicTacToeXO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByFramework/CommandLine/TicTacToe/TicTacToeXO.txt -------------------------------------------------------------------------------- /Examples/ByFramework/Expecto/FSharp.Expecto/Addition.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByFramework/Expecto/FSharp.Expecto/Addition.feature -------------------------------------------------------------------------------- /Examples/ByFramework/Expecto/FSharp.Expecto/AdditionSteps.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByFramework/Expecto/FSharp.Expecto/AdditionSteps.fs -------------------------------------------------------------------------------- /Examples/ByFramework/Expecto/FSharp.Expecto/CalculatorDomain.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByFramework/Expecto/FSharp.Expecto/CalculatorDomain.fs -------------------------------------------------------------------------------- /Examples/ByFramework/Expecto/FSharp.Expecto/Expecto.FSharp.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByFramework/Expecto/FSharp.Expecto/Expecto.FSharp.fsproj -------------------------------------------------------------------------------- /Examples/ByFramework/Expecto/FSharp.Expecto/Program.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByFramework/Expecto/FSharp.Expecto/Program.fs -------------------------------------------------------------------------------- /Examples/ByFramework/Expecto/FSharp.Expecto/Retail.fs: -------------------------------------------------------------------------------- 1 | namespace Retail 2 | 3 | type StockItem = { Count : int } -------------------------------------------------------------------------------- /Examples/ByFramework/Expecto/FSharp.Expecto/Stock.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByFramework/Expecto/FSharp.Expecto/Stock.feature -------------------------------------------------------------------------------- /Examples/ByFramework/Expecto/FSharp.Expecto/StockSteps.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByFramework/Expecto/FSharp.Expecto/StockSteps.fs -------------------------------------------------------------------------------- /Examples/ByFramework/MSTest/MSTest.FSharp/MSTest.FSharp.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByFramework/MSTest/MSTest.FSharp/MSTest.FSharp.fsproj -------------------------------------------------------------------------------- /Examples/ByFramework/MSTest/MSTest.FSharp/MSTestWiring.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByFramework/MSTest/MSTest.FSharp/MSTestWiring.fs -------------------------------------------------------------------------------- /Examples/ByFramework/MSTest/MSTest.FSharp/Stock.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByFramework/MSTest/MSTest.FSharp/Stock.feature -------------------------------------------------------------------------------- /Examples/ByFramework/MSTest/MSTest.FSharp/StockItem.fs: -------------------------------------------------------------------------------- 1 | namespace Retail 2 | 3 | type StockItem = { Count : int } -------------------------------------------------------------------------------- /Examples/ByFramework/MSTest/MSTest.FSharp/StockSteps.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByFramework/MSTest/MSTest.FSharp/StockSteps.fs -------------------------------------------------------------------------------- /Examples/ByFramework/NUnit/CSharp.NUnit/NUnit.CSharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByFramework/NUnit/CSharp.NUnit/NUnit.CSharp.csproj -------------------------------------------------------------------------------- /Examples/ByFramework/NUnit/CSharp.NUnit/NUnitWiring.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByFramework/NUnit/CSharp.NUnit/NUnitWiring.cs -------------------------------------------------------------------------------- /Examples/ByFramework/NUnit/CSharp.NUnit/Stock.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByFramework/NUnit/CSharp.NUnit/Stock.feature -------------------------------------------------------------------------------- /Examples/ByFramework/NUnit/CSharp.NUnit/StockItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByFramework/NUnit/CSharp.NUnit/StockItem.cs -------------------------------------------------------------------------------- /Examples/ByFramework/NUnit/CSharp.NUnit/StockSteps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByFramework/NUnit/CSharp.NUnit/StockSteps.cs -------------------------------------------------------------------------------- /Examples/ByFramework/NUnit/FSharp.NUnit/FeatureFixture.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByFramework/NUnit/FSharp.NUnit/FeatureFixture.fs -------------------------------------------------------------------------------- /Examples/ByFramework/NUnit/FSharp.NUnit/NUnit.FSharp.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByFramework/NUnit/FSharp.NUnit/NUnit.FSharp.fsproj -------------------------------------------------------------------------------- /Examples/ByFramework/NUnit/FSharp.NUnit/Stock.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByFramework/NUnit/FSharp.NUnit/Stock.feature -------------------------------------------------------------------------------- /Examples/ByFramework/NUnit/FSharp.NUnit/StockItem.fs: -------------------------------------------------------------------------------- 1 | namespace Retail 2 | 3 | type StockItem = { Count : int } -------------------------------------------------------------------------------- /Examples/ByFramework/NUnit/FSharp.NUnit/StockSteps.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByFramework/NUnit/FSharp.NUnit/StockSteps.fs -------------------------------------------------------------------------------- /Examples/ByFramework/NUnit/FSharp.NUnit/TicTacToe.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByFramework/NUnit/FSharp.NUnit/TicTacToe.feature -------------------------------------------------------------------------------- /Examples/ByFramework/NUnit/FSharp.NUnit/TicTacToeSteps.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByFramework/NUnit/FSharp.NUnit/TicTacToeSteps.fs -------------------------------------------------------------------------------- /Examples/ByFramework/xUnit/FSharp.xUnit/Addition.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByFramework/xUnit/FSharp.xUnit/Addition.feature -------------------------------------------------------------------------------- /Examples/ByFramework/xUnit/FSharp.xUnit/AdditionSteps.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByFramework/xUnit/FSharp.xUnit/AdditionSteps.fs -------------------------------------------------------------------------------- /Examples/ByFramework/xUnit/FSharp.xUnit/CalculatorDomain.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByFramework/xUnit/FSharp.xUnit/CalculatorDomain.fs -------------------------------------------------------------------------------- /Examples/ByFramework/xUnit/FSharp.xUnit/Retail.fs: -------------------------------------------------------------------------------- 1 | namespace Retail 2 | 3 | type StockItem = { Count : int } -------------------------------------------------------------------------------- /Examples/ByFramework/xUnit/FSharp.xUnit/Stock.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByFramework/xUnit/FSharp.xUnit/Stock.feature -------------------------------------------------------------------------------- /Examples/ByFramework/xUnit/FSharp.xUnit/StockSteps.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByFramework/xUnit/FSharp.xUnit/StockSteps.fs -------------------------------------------------------------------------------- /Examples/ByFramework/xUnit/FSharp.xUnit/Xunit.FSharp.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByFramework/xUnit/FSharp.xUnit/Xunit.FSharp.fsproj -------------------------------------------------------------------------------- /Examples/ByFramework/xUnit/FSharp.xUnit/XunitFeature.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByFramework/xUnit/FSharp.xUnit/XunitFeature.fs -------------------------------------------------------------------------------- /Examples/ByFramework/xUnit/FSharp.xUnit/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByFramework/xUnit/FSharp.xUnit/packages.config -------------------------------------------------------------------------------- /Examples/ByStyle/Attributes/Addition.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByStyle/Attributes/Addition.feature -------------------------------------------------------------------------------- /Examples/ByStyle/Attributes/AdditionSteps.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByStyle/Attributes/AdditionSteps.fs -------------------------------------------------------------------------------- /Examples/ByStyle/Attributes/ApplesAndPies.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByStyle/Attributes/ApplesAndPies.feature -------------------------------------------------------------------------------- /Examples/ByStyle/Attributes/ApplesAndPiesSteps.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByStyle/Attributes/ApplesAndPiesSteps.fs -------------------------------------------------------------------------------- /Examples/ByStyle/Attributes/Atm.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByStyle/Attributes/Atm.feature -------------------------------------------------------------------------------- /Examples/ByStyle/Attributes/Atm.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByStyle/Attributes/Atm.fs -------------------------------------------------------------------------------- /Examples/ByStyle/Attributes/AtmSteps.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByStyle/Attributes/AtmSteps.fs -------------------------------------------------------------------------------- /Examples/ByStyle/Attributes/Attributes.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByStyle/Attributes/Attributes.fsproj -------------------------------------------------------------------------------- /Examples/ByStyle/Attributes/BulletTime.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByStyle/Attributes/BulletTime.feature -------------------------------------------------------------------------------- /Examples/ByStyle/Attributes/BulletTimeSteps.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByStyle/Attributes/BulletTimeSteps.fs -------------------------------------------------------------------------------- /Examples/ByStyle/Attributes/Calculator.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByStyle/Attributes/Calculator.fs -------------------------------------------------------------------------------- /Examples/ByStyle/Attributes/Coffee.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByStyle/Attributes/Coffee.feature -------------------------------------------------------------------------------- /Examples/ByStyle/Attributes/CoffeeSteps.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByStyle/Attributes/CoffeeSteps.fs -------------------------------------------------------------------------------- /Examples/ByStyle/Attributes/FeatureFixture.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByStyle/Attributes/FeatureFixture.fs -------------------------------------------------------------------------------- /Examples/ByStyle/Attributes/Fight.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByStyle/Attributes/Fight.feature -------------------------------------------------------------------------------- /Examples/ByStyle/Attributes/FightSteps.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByStyle/Attributes/FightSteps.fs -------------------------------------------------------------------------------- /Examples/ByStyle/Attributes/ImpliedPrice.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByStyle/Attributes/ImpliedPrice.feature -------------------------------------------------------------------------------- /Examples/ByStyle/Attributes/ImpliedPrice.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByStyle/Attributes/ImpliedPrice.fs -------------------------------------------------------------------------------- /Examples/ByStyle/Attributes/Killer.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByStyle/Attributes/Killer.feature -------------------------------------------------------------------------------- /Examples/ByStyle/Attributes/KillerSteps.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByStyle/Attributes/KillerSteps.fs -------------------------------------------------------------------------------- /Examples/ByStyle/Attributes/MorningDew.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByStyle/Attributes/MorningDew.feature -------------------------------------------------------------------------------- /Examples/ByStyle/Attributes/MorningDewSteps.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByStyle/Attributes/MorningDewSteps.fs -------------------------------------------------------------------------------- /Examples/ByStyle/Attributes/Pacman.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByStyle/Attributes/Pacman.feature -------------------------------------------------------------------------------- /Examples/ByStyle/Attributes/PacmanSteps.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByStyle/Attributes/PacmanSteps.fs -------------------------------------------------------------------------------- /Examples/ByStyle/Attributes/Prelude.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByStyle/Attributes/Prelude.fs -------------------------------------------------------------------------------- /Examples/ByStyle/Attributes/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByStyle/Attributes/ReadMe.txt -------------------------------------------------------------------------------- /Examples/ByStyle/Attributes/Scrabble.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByStyle/Attributes/Scrabble.feature -------------------------------------------------------------------------------- /Examples/ByStyle/Attributes/Scrabble.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByStyle/Attributes/Scrabble.fs -------------------------------------------------------------------------------- /Examples/ByStyle/Attributes/ScrabbleSteps.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByStyle/Attributes/ScrabbleSteps.fs -------------------------------------------------------------------------------- /Examples/ByStyle/Attributes/Skill.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByStyle/Attributes/Skill.feature -------------------------------------------------------------------------------- /Examples/ByStyle/Attributes/SkillSteps.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByStyle/Attributes/SkillSteps.fs -------------------------------------------------------------------------------- /Examples/ByStyle/Attributes/ValetParking.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByStyle/Attributes/ValetParking.feature -------------------------------------------------------------------------------- /Examples/ByStyle/Attributes/ValetParkingSteps.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByStyle/Attributes/ValetParkingSteps.fs -------------------------------------------------------------------------------- /Examples/ByStyle/Functional/Addition.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByStyle/Functional/Addition.txt -------------------------------------------------------------------------------- /Examples/ByStyle/Functional/AdditionSteps.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByStyle/Functional/AdditionSteps.fs -------------------------------------------------------------------------------- /Examples/ByStyle/Functional/FeatureFixture.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByStyle/Functional/FeatureFixture.fs -------------------------------------------------------------------------------- /Examples/ByStyle/Functional/Functional.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByStyle/Functional/Functional.fs -------------------------------------------------------------------------------- /Examples/ByStyle/Functional/Functional.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByStyle/Functional/Functional.fsproj -------------------------------------------------------------------------------- /Examples/ByStyle/Functional/Hangman.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByStyle/Functional/Hangman.feature -------------------------------------------------------------------------------- /Examples/ByStyle/Functional/Hangman.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByStyle/Functional/Hangman.fs -------------------------------------------------------------------------------- /Examples/ByStyle/Functional/HangmanSteps.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByStyle/Functional/HangmanSteps.fs -------------------------------------------------------------------------------- /Examples/ByStyle/Functional/Scrabble.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByStyle/Functional/Scrabble.feature -------------------------------------------------------------------------------- /Examples/ByStyle/Functional/Scrabble.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByStyle/Functional/Scrabble.fs -------------------------------------------------------------------------------- /Examples/ByStyle/Functional/ScrabbleSteps.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByStyle/Functional/ScrabbleSteps.fs -------------------------------------------------------------------------------- /Examples/ByStyle/Interactive/Calculator.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByStyle/Interactive/Calculator.fs -------------------------------------------------------------------------------- /Examples/ByStyle/Interactive/Interactive.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByStyle/Interactive/Interactive.fsproj -------------------------------------------------------------------------------- /Examples/ByStyle/Interactive/StoryRunner.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/ByStyle/Interactive/StoryRunner.fs -------------------------------------------------------------------------------- /Examples/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Examples/Directory.Build.props -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Nuget/NUnit/TickSpec.NUnit.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Nuget/NUnit/TickSpec.NUnit.nuspec -------------------------------------------------------------------------------- /Nuget/NUnit/content/Fixtures.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Nuget/NUnit/content/Fixtures.fs -------------------------------------------------------------------------------- /Nuget/NUnit/content/Stock.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Nuget/NUnit/content/Stock.feature -------------------------------------------------------------------------------- /Nuget/NUnit/content/StockStepDefinitions.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Nuget/NUnit/content/StockStepDefinitions.fs -------------------------------------------------------------------------------- /Nuget/xUnit/TickSpec.xUnit.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Nuget/xUnit/TickSpec.xUnit.nuspec -------------------------------------------------------------------------------- /Nuget/xUnit/content/Stock.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Nuget/xUnit/content/Stock.feature -------------------------------------------------------------------------------- /Nuget/xUnit/content/StockStepDefinitions.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Nuget/xUnit/content/StockStepDefinitions.fs -------------------------------------------------------------------------------- /Nuget/xUnit/content/XunitFeature.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Nuget/xUnit/content/XunitFeature.fs -------------------------------------------------------------------------------- /Nuget/xUnit/content/XunitWiring.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Nuget/xUnit/content/XunitWiring.fs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE_NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/RELEASE_NOTES.md -------------------------------------------------------------------------------- /TickSpec.Tests/FeatureParserTest.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/TickSpec.Tests/FeatureParserTest.fs -------------------------------------------------------------------------------- /TickSpec.Tests/PlaceholdersInItems.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/TickSpec.Tests/PlaceholdersInItems.feature -------------------------------------------------------------------------------- /TickSpec.Tests/TagsAndExamples.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/TickSpec.Tests/TagsAndExamples.feature -------------------------------------------------------------------------------- /TickSpec.Tests/TickSpec.Tests.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/TickSpec.Tests/TickSpec.Tests.fsproj -------------------------------------------------------------------------------- /TickSpec.Tests/WithItems.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/TickSpec.Tests/WithItems.feature -------------------------------------------------------------------------------- /TickSpec.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/TickSpec.sln -------------------------------------------------------------------------------- /TickSpec/AssemblyInfo.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/TickSpec/AssemblyInfo.fs -------------------------------------------------------------------------------- /TickSpec/BlockParser.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/TickSpec/BlockParser.fs -------------------------------------------------------------------------------- /TickSpec/EventAttributes.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/TickSpec/EventAttributes.fs -------------------------------------------------------------------------------- /TickSpec/Exceptions.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/TickSpec/Exceptions.fs -------------------------------------------------------------------------------- /TickSpec/Extensions.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/TickSpec/Extensions.fs -------------------------------------------------------------------------------- /TickSpec/Feature.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/TickSpec/Feature.fs -------------------------------------------------------------------------------- /TickSpec/FeatureGen.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/TickSpec/FeatureGen.fs -------------------------------------------------------------------------------- /TickSpec/FeatureParser.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/TickSpec/FeatureParser.fs -------------------------------------------------------------------------------- /TickSpec/FeatureSource.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/TickSpec/FeatureSource.fs -------------------------------------------------------------------------------- /TickSpec/LineParser.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/TickSpec/LineParser.fs -------------------------------------------------------------------------------- /TickSpec/ScenarioGen.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/TickSpec/ScenarioGen.fs -------------------------------------------------------------------------------- /TickSpec/ScenarioRun.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/TickSpec/ScenarioRun.fs -------------------------------------------------------------------------------- /TickSpec/ScopeAttributes.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/TickSpec/ScopeAttributes.fs -------------------------------------------------------------------------------- /TickSpec/ServiceProvider.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/TickSpec/ServiceProvider.fs -------------------------------------------------------------------------------- /TickSpec/StepAttributes.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/TickSpec/StepAttributes.fs -------------------------------------------------------------------------------- /TickSpec/TickSpec.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/TickSpec/TickSpec.fs -------------------------------------------------------------------------------- /TickSpec/TickSpec.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/TickSpec/TickSpec.fsproj -------------------------------------------------------------------------------- /Wiring/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Wiring/Directory.Build.props -------------------------------------------------------------------------------- /Wiring/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Wiring/Directory.Build.targets -------------------------------------------------------------------------------- /Wiring/TickSpec.Xunit/FeatureSetup.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Wiring/TickSpec.Xunit/FeatureSetup.fs -------------------------------------------------------------------------------- /Wiring/TickSpec.Xunit/TickSpec.Xunit.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/Wiring/TickSpec.Xunit/TickSpec.Xunit.fsproj -------------------------------------------------------------------------------- /netfx.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/TickSpec/HEAD/netfx.props --------------------------------------------------------------------------------