From 42d3909e33a605beaee8fa10fb42d647f210ed95 Mon Sep 17 00:00:00 2001 From: Dirk Rombauts Date: Tue, 9 Oct 2018 17:50:43 +0200 Subject: [PATCH] Version 2.20.0 --- CHANGELOG.md | 12 + CONTRIBUTING.md | 4 +- CreateTestResults.ps1 | 82 +++ CreateTestresults.cmd | 55 -- build.bat | 2 +- build.fsx | 7 + docs/Output/Dhtml/Index.html | 4 +- docs/Output/Dhtml/default.htm | 554 ++++++++++++++++++ docs/Output/Dhtml/img/link.png | Bin 428 -> 428 bytes docs/Output/Dhtml/js/featureSearch.js | 2 +- docs/Output/Dhtml/pickledFeatures.js | 343 +++++++---- docs/Output/Excel/features.xlsx | Bin 38739 -> 38739 bytes .../Features/00BasicGherkin/BasicGherkin.html | 6 +- .../Html/Features/00BasicGherkin/index.html | 6 +- .../TestRunnerIsNotImportant.html | 6 +- .../Html/Features/01TestRunner/index.html | 6 +- .../Html/Features/02TagsAndHooks/Hooks.html | 6 +- .../Html/Features/02TagsAndHooks/TagDemo.html | 6 +- .../Html/Features/02TagsAndHooks/index.html | 6 +- .../031ScenarioContext/ScenarioContext.html | 6 +- .../Features/031ScenarioContext/index.html | 6 +- .../FeatureContextFeatures.html | 6 +- .../Features/032FeatureContext/index.html | 6 +- .../03ScenarioOutline/ScenarioOutline.html | 6 +- .../Features/03ScenarioOutline/index.html | 6 +- .../04Background/BackgroundFeature.html | 6 +- .../Html/Features/04Background/index.html | 6 +- .../05TablesAndAssist/TableScenario.html | 6 +- .../Features/05TablesAndAssist/index.html | 6 +- .../Features/06CompareToAssist/CompareTo.html | 6 +- .../Features/06CompareToAssist/index.html | 6 +- .../Html/Features/07Localization/Svenska.html | 6 +- .../Html/Features/07Localization/Vlaams.html | 6 +- .../Html/Features/07Localization/index.html | 6 +- .../AttributeOverloading.html | 6 +- .../08AttributeOverloading/index.html | 6 +- .../CallingStepsFromSteps.html | 6 +- .../09CallingStepsFromSteps/index.html | 6 +- .../StepTransformation.html | 6 +- .../Features/10StepTransformation/index.html | 6 +- .../11ContextInjection/ContextInjection.html | 6 +- .../Features/11ContextInjection/index.html | 6 +- .../ChildChildFolder/NestedFolderExample.html | 6 +- .../ChildFolder/ChildChildFolder/index.html | 6 +- .../12NestedFolders/ChildFolder/index.html | 6 +- .../Html/Features/12NestedFolders/index.html | 6 +- .../MultilineFeatureExample.html | 6 +- .../Html/Features/13MultilineText/index.html | 6 +- .../14MarkdownExample/MarkdownExamples.html | 6 +- .../Features/14MarkdownExample/index.html | 6 +- .../15Pickles/InteractiveDHTMLView.html | 6 +- .../Output/Html/Features/15Pickles/index.html | 6 +- docs/Output/Html/Features/Arithmetic.html | 6 +- docs/Output/Html/Features/Trigonometry.html | 6 +- .../Features/Workflow/ClearingScreen.html | 6 +- docs/Output/Html/Features/Workflow/index.html | 6 +- docs/Output/Html/Features/index.html | 6 +- docs/Output/Html/img/failure.png | Bin 9181 -> 9181 bytes docs/Output/Html/img/inconclusive.png | Bin 8133 -> 8133 bytes docs/Output/Html/img/success.png | Bin 9202 -> 9202 bytes docs/Output/Html/index.html | 6 +- docs/Output/Html/readme.html | 6 +- docs/Output/JSON/pickledFeatures.json | 343 +++++++---- docs/Output/Word/Pickles.docx | Bin 14065 -> 14061 bytes docs/Output/Word/features.docx | Bin 14047 -> 14047 bytes docs/index.html | 2 +- src/Pickles/.vs/config/applicationhost.config | 2 +- src/Pickles/Pickles.BaseDhtmlFiles/Index.html | 4 +- .../js/featureSearch.js | 2 +- src/Pickles/Pickles.CommandLine/NLog.xsd | 15 + .../CucumberDocumentationBuilder.cs | 14 +- .../FormattingAFeature.feature | 18 +- .../FormattingAFeature.feature.cs | 39 +- ...ocumentationBuilders.Json.UnitTests.csproj | 3 - .../JsonFeatureWithMetaInfo.cs | 2 +- .../JsonTestResult.cs | 2 + .../TestResultToJsonTestResultMapper.cs | 9 +- .../ObjectModel/Feature.cs | 1 + .../ObjectModel/ScenarioBase.cs | 1 + .../ObjectModel/TableRow.cs | 1 + .../ObjectModel/TestResult.cs | 3 +- .../TestResultToJsonTestResultMapperTests.cs | 17 + .../Pickles.TestFrameworks.UnitTests.csproj | 1 + ...nMatchingAnXunit2ScenarioOutlineExample.cs | 50 ++ .../XUnit2ScenarioOutlineExampleMatcher.cs | 2 +- .../WhenGeneratingCLICommands.cs | 212 +++++++ .../WhenGeneratingPowerShellCommands.cs | 212 +++++++ .../Pickles.UserInterface.UnitTests.csproj | 127 ++++ .../Properties/AssemblyInfo.cs | 4 + .../app.config | 19 + .../packages.config | 7 + .../CommandGeneration/CLICommandGenerator.cs | 79 +++ .../CommandGeneration/CommandGeneratorBase.cs | 49 ++ .../PowerShellCommandGenerator.cs | 79 +++ .../StringBuilderExtensions.cs | 34 ++ .../Pickles.UserInterface/MainWindow.xaml | 12 + src/Pickles/Pickles.UserInterface/NLog.xsd | 15 + .../Pickles.UserInterface.csproj | 4 + .../ViewModel/MainViewModel.cs | 162 +++-- src/Pickles/Pickles.sln | 14 +- src/Pickles/Pickles/Runner.cs | 2 +- src/Pickles/VersionInfo.cs | 8 +- test.fsx | 10 + 103 files changed, 2401 insertions(+), 526 deletions(-) create mode 100644 CreateTestResults.ps1 delete mode 100644 CreateTestresults.cmd create mode 100644 docs/Output/Dhtml/default.htm create mode 100644 src/Pickles/Pickles.TestFrameworks.UnitTests/XUnit/XUnit2/WhenMatchingAnXunit2ScenarioOutlineExample.cs create mode 100644 src/Pickles/Pickles.UserInterface.UnitTests/CommandGeneration/WhenGeneratingCLICommands.cs create mode 100644 src/Pickles/Pickles.UserInterface.UnitTests/CommandGeneration/WhenGeneratingPowerShellCommands.cs create mode 100644 src/Pickles/Pickles.UserInterface.UnitTests/Pickles.UserInterface.UnitTests.csproj create mode 100644 src/Pickles/Pickles.UserInterface.UnitTests/Properties/AssemblyInfo.cs create mode 100644 src/Pickles/Pickles.UserInterface.UnitTests/app.config create mode 100644 src/Pickles/Pickles.UserInterface.UnitTests/packages.config create mode 100644 src/Pickles/Pickles.UserInterface/CommandGeneration/CLICommandGenerator.cs create mode 100644 src/Pickles/Pickles.UserInterface/CommandGeneration/CommandGeneratorBase.cs create mode 100644 src/Pickles/Pickles.UserInterface/CommandGeneration/PowerShellCommandGenerator.cs create mode 100644 src/Pickles/Pickles.UserInterface/CommandGeneration/StringBuilderExtensions.cs diff --git a/CHANGELOG.md b/CHANGELOG.md index ee10c0a85..7d8cc9388 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -28,6 +28,18 @@ This document is formatted according to the principles of [Keep A CHANGELOG](htt ### Security +## [2.20.0] - 2018-10-09 + +### Added + +- Pickles GUI: Generate equivalent PowerShell or Windows Console command line ([90](https://github.com/picklesdoc/pickles/issues/90)) (by [@magicmonty](https://github.com/magicmonty)) + +### Fixed + +- Inconclusive marker shown when generating doc without test results ([545](https://github.com/picklesdoc/pickles/issues/545)) (by [@dirkrombauts](https://github.com/dirkrombauts)) +- Remove requirement for hardcoded 'Index.html' in featureSearch.js ([541](https://github.com/picklesdoc/pickles/pull/541)) (by [@szaliszali](https://github.com/szaliszali)) +- Exception in XUnit2ScenarioOutlineExampleMatcher ([548](https://github.com/picklesdoc/pickles/issues/548)) (by [@magicmonty](https://github.com/magicmonty)) + ## [2.19.0] - 2018-07-20 ### Added diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 6dc764fca..0f8085734 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -16,7 +16,7 @@ If you find a bug in a Test Result Provider and want to contribute towards fixin Implement the automation layer in .NET, Ruby and JS if you are able. If you create your scenarios so that they use only steps from the other feature files, then you will most likely not need this step. -Use the `CreateTestresults.cmd` script to create test result files and to deploy them to the source code of Pickles. Please remember to build the `TestHarness.sln` solution first! +Use the `CreateTestResults.ps1` script to create test result files and to deploy them to the source code of Pickles. Please remember to build the `TestHarness.sln` solution first! Extend the set of unit tests for the unit test providers. Your best bet is to add test scenarios to the [Standard Test Suite](https://github.com/picklesdoc/pickles/blob/develop/src/Pickles/Pickles.TestFrameworks.UnitTests/StandardTestSuite.cs). Now comes the boring part: for each class that derives from `StandardTestSuite`, add methods in that class that call the test scenarios that you added in `StandardTestSuite`. @@ -30,7 +30,7 @@ the `test-harness` directory contains the scenarios from which test results are ##### .NET Code -The .NET code is found in `./TestHarness/TestHarness.sln` solution. You will need [Visual Studio 2015](https://www.visualstudio.com/en-us/downloads/download-visual-studio-vs.aspx) in order to open the solution; the free Community version is fine. Remember to restore the NuGet packages before you compile. +The .NET code is found in `./TestHarness/TestHarness.sln` solution. You will need [Visual Studio 2017](https://visualstudio.microsoft.com/downloads/) in order to open the solution; the free Community version is fine. Remember to restore the NuGet packages before you compile. ##### Cucumber/Ruby Code diff --git a/CreateTestResults.ps1 b/CreateTestResults.ps1 new file mode 100644 index 000000000..46ef8e590 --- /dev/null +++ b/CreateTestResults.ps1 @@ -0,0 +1,82 @@ +Write-Host "Remember to build the solution first!" + +# NUnit2 +Start-Process -FilePath "$PSScriptRoot\test-harness\packages\NUnit.Runners.2.6.4\tools\nunit-console.exe" -ArgumentList "$PSScriptRoot\test-harness\nunit\bin\Debug\nunitHarness.dll", "/result=$PSScriptRoot\results-example-nunit.xml" -NoNewWindow -Wait + +# NUnit 2 with NUnit3 runner +Start-Process -FilePath "$PSScriptRoot\test-harness\packages\NUnit.ConsoleRunner.3.6.0\tools\nunit3-console.exe" -ArgumentList "$PSScriptRoot\test-harness\nunit\bin\Debug\nunitHarness.dll", "/result=$PSScriptRoot\results-example-nunit2-with-nunit3-runner.xml" -NoNewWindow -Wait + +# NUnit 3 +Start-Process -FilePath "$PSScriptRoot\test-harness\packages\NUnit.ConsoleRunner.3.6.0\tools\nunit3-console.exe" -ArgumentList "$PSScriptRoot\test-harness\nunit3\bin\Debug\nunit3Harness.dll", "/result=$PSScriptRoot\results-example-nunit3.xml" -NoNewWindow -Wait + +# SpecRun +Start-Process -FilePath "$PSScriptRoot\test-harness\packages\SpecRun.Runner.1.2.0\tools\specrun.exe" -ArgumentList "run default.srprofile", "/baseFolder:$PSScriptRoot\test-harness\SpecRun\bin\Debug", "/log:specrun.log", "/report:$PSScriptRoot\results-example-specrun.html" -NoNewWindow -Wait + +# XUnit 1 +Start-Process -FilePath "$PSScriptRoot\test-harness\packagesNonNuget\xunit.runner\xunit.console.clr4.exe" -ArgumentList "$PSScriptRoot\test-harness\xunit\bin\Debug\xunitHarness.dll", "/xml $PSScriptRoot\results-example-xunit.xml" -NoNewWindow -Wait + +# XUnit 2 +Start-Process -FilePath "$PSScriptRoot\test-harness\packages\xunit.runner.console.2.1.0\tools\xunit.console.exe" -ArgumentList "$PSScriptRoot\test-harness\xunit2\bin\Debug\xunit2Harness.dll", "-xml $PSScriptRoot\results-example-xunit2.xml", "-parallel none" -NoNewWindow -Wait + +# MSTest +$MSTest = Get-ChildItem -Path "${env:ProgramFiles(x86)}\Microsoft Visual Studio\2017" -Recurse | Where-Object { $_.Name -eq "MSTest.exe" } | Select-Object -First 1 +$MsTestResultFilePath = "$PSScriptRoot\results-example-mstest.trx" +if (Test-Path $MsTestResultFilePath) { + Remove-Item $MsTestResultFilePath +} + +Start-Process -FilePath $MSTest.FullName -ArgumentList "/testcontainer:$PSScriptRoot\test-harness\mstest\bin\Debug\mstestHarness.dll", "/resultsfile:$MsTestResultFilePath", "/testsettings:$PSScriptRoot\test-harness\TestSettings.testsettings" -NoNewWindow -Wait + +# Cucumber +Set-Location -Path "$PSScriptRoot\test-harness\Cucumber" +& "cucumber" --format json_pretty --out "$PSScriptRoot\results-example-json.json" --tags ~@ignore +Set-Location $PSScriptRoot + +# CucumberJS +Set-Location -Path "$PSScriptRoot\test-harness\CucumberJS" +& "$PSScriptRoot\node_modules\.bin\cucumber-js" --format json:"$PSScriptRoot\results-example-cucumberjs-json.json" +Set-Location $PSScriptRoot + +# VSTest +## Get VSTest console runner location +$VSTest = Get-ChildItem -Path "${env:ProgramFiles(x86)}\Microsoft Visual Studio\2017" -Recurse | Where-Object { $_.Name -eq "vstest.console.exe" } | Select-Object -First 1 + +## Remove any previous .trx files +Get-ChildItem -Path "$PSScriptRoot\TestResults" | Where-Object { $_.Extension -eq ".trx" } | Remove-Item + +Start-Process -FilePath $VSTest.FullName -ArgumentList "$PSScriptRoot\test-harness\mstest\bin\Debug\mstestHarness.dll", "/logger:trx" -NoNewWindow -Wait + +## Get the .trx file +$VsTestResultFile = Get-ChildItem -Path "$PSScriptRoot\TestResults" | Where-Object {$_.Extension -eq ".trx" } | Sort-Object CreationTime -Descending | Select-Object -First 1 + +# Moving result files to corresponding unit test projects +Write-Host "Moving NUnit 2 results" +Move-Item -Path "$PSScriptRoot\results-example-nunit.xml" -Destination "$PSScriptRoot\src\Pickles\Pickles.TestFrameworks.UnitTests\NUnit\NUnit2\" -Force + +Write-Host "Moving NUnit 2 with NUnit3 runner results" +Move-Item -Path "$PSScriptRoot\results-example-nunit2-with-nunit3-runner.xml" -Destination "$PSScriptRoot\src\Pickles\Pickles.TestFrameworks.UnitTests\NUnit\NUnit3\" -Force + +Write-Host "Moving NUnit 3 results" +Move-Item -Path "$PSScriptRoot\results-example-nunit3.xml" -Destination "$PSScriptRoot\src\Pickles\Pickles.TestFrameworks.UnitTests\NUnit\NUnit3\" -Force + +Write-Host "Moving XUnit 1 results" +Move-Item -Path "$PSScriptRoot\results-example-xunit.xml" -Destination "$PSScriptRoot\src\Pickles\Pickles.TestFrameworks.UnitTests\XUnit\XUnit1\" -Force + +Write-Host "Moving XUnit 2 results" +Move-Item -Path "$PSScriptRoot\results-example-xunit2.xml" -Destination "$PSScriptRoot\src\Pickles\Pickles.TestFrameworks.UnitTests\XUnit\XUnit2\" -Force + +Write-Host "Moving SpecRun results" +Move-Item -Path "$PSScriptRoot\results-example-specrun.html" -Destination "$PSScriptRoot\src\Pickles\Pickles.TestFrameworks.UnitTests\SpecRun\" -Force + +Write-Host "Moving Cucumber JSON results" +Move-Item -Path "$PSScriptRoot\results-example-json.json" -Destination "$PSScriptRoot\src\Pickles\Pickles.TestFrameworks.UnitTests\CucumberJSON\" -Force + +Write-Host "Moving MSTest results" +Move-Item -Path "$PSScriptRoot\results-example-mstest.trx" -Destination "$PSScriptRoot\src\Pickles\Pickles.TestFrameworks.UnitTests\MsTest\" -Force + +Write-Host "Moving CucumberJS JSON results" +Write-Host "The tags do not seem to work - remember to manually remove the ignored scenarios from the result" +Move-Item -Path "$PSScriptRoot\results-example-cucumberjs-json.json" -Destination "$PSScriptRoot\src\Pickles\Pickles.TestFrameworks.UnitTests\CucumberJSON\" -Force + +Write-Host "Moving VSTest results" +Move-Item -Path $VsTestResultFile.FullName -Destination "$PSScriptRoot\src\Pickles\Pickles.TestFrameworks.UnitTests\VsTest\results-example-vstest.trx" -Force \ No newline at end of file diff --git a/CreateTestresults.cmd b/CreateTestresults.cmd deleted file mode 100644 index 0571f582f..000000000 --- a/CreateTestresults.cmd +++ /dev/null @@ -1,55 +0,0 @@ -@echo off -@pushd %~dp0 - -ECHO Remember to build the solution first! - -"%~dp0\test-harness\packages\NUnit.Runners.2.6.4\tools\nunit-console.exe" "%~dp0\test-harness\nunit\bin\Debug\nunitHarness.dll" /result="%~dp0\results-example-nunit.xml" -"%~dp0\test-harness\packages\NUnit.ConsoleRunner.3.6.0\tools\nunit3-console.exe" "%~dp0\test-harness\nunit\bin\Debug\nunitHarness.dll" /result="%~dp0\results-example-nunit2-with-nunit3-runner.xml" - -"%~dp0\test-harness\packages\NUnit.ConsoleRunner.3.6.0\tools\nunit3-console.exe" "%~dp0\test-harness\nunit3\bin\Debug\nunit3Harness.dll" /result="%~dp0\results-example-nunit3.xml" - -"%~dp0\test-harness\packages\SpecRun.Runner.1.2.0\tools\specrun.exe" run default.srprofile "/baseFolder:%~dp0\test-harness\SpecRun\bin\Debug" /log:specrun.log /report:"%~dp0\results-example-specrun.html" - -"%~dp0\test-harness\packagesNonNuget\xunit.runner\xunit.console.clr4.exe" "%~dp0\test-harness\xunit\bin\Debug\xunitHarness.dll" /xml "%~dp0\results-example-xunit.xml" - -"%~dp0\test-harness\packages\xunit.runner.console.2.1.0\tools\xunit.console.exe" "%~dp0\test-harness\xunit2\bin\Debug\xunit2Harness.dll" -xml "%~dp0\results-example-xunit2.xml" -parallel none - -del "%~dp0\results-example-mstest.trx" -"%ProgramFiles(x86)%\Microsoft Visual Studio 14.0\Common7\IDE\MSTest.exe" /testcontainer:"%~dp0\test-harness\mstest\bin\Debug\mstestHarness.dll" /resultsfile:"%~dp0\results-example-mstest.trx" /testsettings:"%~dp0\test-harness\TestSettings.testsettings" - -cd "%~dp0\test-harness\Cucumber" -call cucumber --format json_pretty --out "%~dp0\results-example-json.json" --tags ~@ignore -cd "%~dp0" - -cd "%~dp0\test-harness\CucumberJS" -call ..\..\node_modules\.bin\cucumber-js --format json:"..\..\results-example-cucumberjs-json.json" -REM the tags do not seem to work - remember to manually remove the ignored scenarios from the result --tags 'not @ignore' -cd "%~dp0" - -rmdir /s /q "%~dp0\TestResults\" -"%ProgramFiles(x86)%\Microsoft Visual Studio 14.0\Common7\IDE\CommonExtensions\Microsoft\TestWindow\vstest.console.exe" "%~dp0\test-harness\mstest\bin\Debug\mstestHarness.dll" /logger:trx -FOR /R "%~dp0\TestResults\" %%G IN (*.trx) DO move "%%G" "%~dp0\results-example-vstest.trx" - -ECHO Moving NUnit 2 results -move "%~dp0\results-example-nunit.xml" "%~dp0\src\Pickles\Pickles.TestFrameworks.UnitTests\NUnit\NUnit2\" -ECHO Moving NUnit 2 with NUnit3 runner results -move "%~dp0\results-example-nunit2-with-nunit3-runner.xml" "%~dp0\src\Pickles\Pickles.TestFrameworks.UnitTests\NUnit\NUnit3\" -ECHO Moving NUnit 3 results -move "%~dp0\results-example-nunit3.xml" "%~dp0\src\Pickles\Pickles.TestFrameworks.UnitTests\NUnit\NUnit3\" -ECHO Moving XUnit 1 results -move "%~dp0\results-example-xunit.xml" "%~dp0\src\Pickles\Pickles.TestFrameworks.UnitTests\XUnit\XUnit1\" -ECHO Moving XUnit 2 results -move "%~dp0\results-example-xunit2.xml" "%~dp0\src\Pickles\Pickles.TestFrameworks.UnitTests\XUnit\XUnit2\" -ECHO Moving SpecRun results -move "%~dp0\results-example-specrun.html" "%~dp0\src\Pickles\Pickles.TestFrameworks.UnitTests\SpecRun\" -ECHO Moving Cucumber JSON results -move "%~dp0\results-example-json.json" "%~dp0\src\Pickles\Pickles.TestFrameworks.UnitTests\CucumberJSON\" -ECHO Moving MSTest results -move "%~dp0\results-example-mstest.trx" "%~dp0\src\Pickles\Pickles.TestFrameworks.UnitTests\MsTest\" -ECHO Moving CucumberJS JSON results -ECHO The tags do not seem to work - remember to manually remove the ignored scenarios from the result -move "%~dp0\results-example-cucumberjs-json.json" "%~dp0\src\Pickles\Pickles.TestFrameworks.UnitTests\CucumberJSON\" -ECHO Moving VSTest results -move "%~dp0\results-example-vstest.trx" "%~dp0\src\Pickles\Pickles.TestFrameworks.UnitTests\VsTest\" - -@popd diff --git a/build.bat b/build.bat index a0825c98f..6baf103e1 100644 --- a/build.bat +++ b/build.bat @@ -1,5 +1,5 @@ @echo off -set "picklesVersion=2.19.0" +set "picklesVersion=2.20.0" cls diff --git a/build.fsx b/build.fsx index 399cd9364..c62282c22 100644 --- a/build.fsx +++ b/build.fsx @@ -119,6 +119,12 @@ Target "BuildTest.Runners.CommandLine" (fun _ -> |> Log "AppBuild-Output: " ) +Target "BuildTest.Runners.UI" (fun _ -> + !! "src/Pickles/Pickles.UserInterface.UnitTests/Pickles.UserInterface.UnitTests.csproj" + |> MSBuildRelease testDir "Build" + |> Log "AppBuild-Output: " +) + let createZip (packageType : string) = !! (buildDir + "/" + packageType + "/*.*") -- "*.zip" |> Zip (buildDir + packageType) (deployDir + "Pickles-" + packageType + "-" + version + ".zip") @@ -151,6 +157,7 @@ Target "Default" (fun _ -> ==> "BuildTest.DocumentationBuilders.Json" ==> "BuildTest.DocumentationBuilders.Word" ==> "BuildTest.Runners.CommandLine" + ==> "BuildTest.Runners.UI" ==> "Zip" ==> "Default" diff --git a/docs/Output/Dhtml/Index.html b/docs/Output/Dhtml/Index.html index 3e777c9dc..a13ed7839 100644 --- a/docs/Output/Dhtml/Index.html +++ b/docs/Output/Dhtml/Index.html @@ -45,11 +45,11 @@ diff --git a/docs/Output/Dhtml/default.htm b/docs/Output/Dhtml/default.htm new file mode 100644 index 000000000..3e777c9dc --- /dev/null +++ b/docs/Output/Dhtml/default.htm @@ -0,0 +1,554 @@ + + + + + + Features + + + + + + + + + + + + + + +
+ Loading... +
+ + + + + + + + + + + + +
+
+
+
+
+
+
+
+ +
+ + +
+ +
Generated on:
+
+
+
+ +
+
+
+
+ + + + +
+

+
+
+ +
+
+
+

Background:

+
+
    +
    +
    + +
    +
    + + + + + +
    + +
    +
    + +
    +

    +
    +
    + +
    + +
      + +
        +
      • +
        + + + + + + +
        +
        + : +
        +
        +
        +
      • +
      + +
      + + + Get Link for Scenario + +
      +
      +
      + + +
      + + +
      +
      + + + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/Output/Dhtml/img/link.png b/docs/Output/Dhtml/img/link.png index bc53e8da7eb002a6bf7272d4b4621c2aba6eecff..68fc43b7c645f4888cc30c175ab136b743dc7352 100644 GIT binary patch delta 21 dcmZ3(yoPy#CzlWd1Gf<4rMq>1HU>vB0suui2KfL0 delta 21 ccmZ3(yoPy#Czmh-1Gg|E!>ltZ1jUta}rB3^Ye-`G7F0BP#v|%tlTI5QgvVRo$*dbzknqQdsKstD)nETi>F)++xoxD&_aELTniCjmwHS69#H&$=6jY65It)bYxi9N+V+?eEO&k)>*g-oUr-x69Bx3|l(CCzODQV@LzFVuE$`Z^s zX66Jr`No&&-!dmpjFaD-Q#1vtm8JAED>#j5J(FHH`G1v}I+2NKG9#DFhjYI8Y~&MW<^VCK%3t`pS(DkEQ6MeRGSM*Ez#_%O zAj!niAa!#Aiy32rS*oRFTAG1DYHE^!iD{CtrJ0d|d77!YiLpsil9@%aUO{ngN^*gc zf@g}YQc$9qg{5hVL866ms<}x@a-x!gzMYMJP-;$MNoIataYklAu^p;IHnXu^W@Z7o zWb<9lr$P|cF_~SA5LSy^2~_rvA|E?Mj8F3m6CX$i&lGbXdnN{kS*(*6>Pc?a)X8Fk zsF2AkaO zynq$rCT-8D5Ic-NDF*}t%~56pt9b5P2Q?!zU?vkU$Y1ie%J$R&RrF4t=pZ%ueLL%B zz2GGfsZ~p_SoH#>zJjDS{|wy$v6bcAA2U0k@Iuzff!R`%rU0ECkphv@&$PPu87MV} z8zi+kD_Ra3pgnP0Au0~-Fke^!RKdj#QZac!7whJ{#CcFh38Yv-)%&G?g|ghUk3m_2 z`NqtgASd7WGW}cTqcA21a@YrUr%v=94egxZ;q}sWpIvctY(B0WfQ_O`jz^u}`k; zGlYn4>a&6{KJ?i^7)Jdr5JpwMIfSvb-x0$2)$ashI81;t+F*<`Fow`Xs8j@uF%QOg z0%K@Rf~qNiF}A@Ne_#x!$xt;NFvhvb&Jf#0r$8AoFvemS;}wiyI2Ed<0>;=s)fp+4 s5~qkxR+y#Using And and But diff --git a/docs/Output/Html/Features/00BasicGherkin/index.html b/docs/Output/Html/Features/00BasicGherkin/index.html index 6e2a56997..0bee8bdd7 100644 --- a/docs/Output/Html/Features/00BasicGherkin/index.html +++ b/docs/Output/Html/Features/00BasicGherkin/index.html @@ -268,9 +268,9 @@

      00 Basic Gherkin

      diff --git a/docs/Output/Html/Features/01TestRunner/TestRunnerIsNotImportant.html b/docs/Output/Html/Features/01TestRunner/TestRunnerIsNotImportant.html index 6fdf7678f..00b39a585 100644 --- a/docs/Output/Html/Features/01TestRunner/TestRunnerIsNotImportant.html +++ b/docs/Output/Html/Features/01TestRunner/TestRunnerIsNotImportant.html @@ -278,9 +278,9 @@

      A couple of simple steps

      diff --git a/docs/Output/Html/Features/01TestRunner/index.html b/docs/Output/Html/Features/01TestRunner/index.html index 94ca61745..888dafdd5 100644 --- a/docs/Output/Html/Features/01TestRunner/index.html +++ b/docs/Output/Html/Features/01TestRunner/index.html @@ -266,9 +266,9 @@

      01 Test Runner

      diff --git a/docs/Output/Html/Features/02TagsAndHooks/Hooks.html b/docs/Output/Html/Features/02TagsAndHooks/Hooks.html index cdf351cf1..55cbaa141 100644 --- a/docs/Output/Html/Features/02TagsAndHooks/Hooks.html +++ b/docs/Output/Html/Features/02TagsAndHooks/Hooks.html @@ -340,9 +340,9 @@

      Hooking into pre conditions for Steps in SpecFlow

      diff --git a/docs/Output/Html/Features/02TagsAndHooks/TagDemo.html b/docs/Output/Html/Features/02TagsAndHooks/TagDemo.html index da9e4043e..d21fa1d13 100644 --- a/docs/Output/Html/Features/02TagsAndHooks/TagDemo.html +++ b/docs/Output/Html/Features/02TagsAndHooks/TagDemo.html @@ -358,9 +358,9 @@

      A scenario with 2 tags

      diff --git a/docs/Output/Html/Features/02TagsAndHooks/index.html b/docs/Output/Html/Features/02TagsAndHooks/index.html index 1e14b407b..17efd6576 100644 --- a/docs/Output/Html/Features/02TagsAndHooks/index.html +++ b/docs/Output/Html/Features/02TagsAndHooks/index.html @@ -275,9 +275,9 @@

      02 Tags And Hooks

      diff --git a/docs/Output/Html/Features/031ScenarioContext/ScenarioContext.html b/docs/Output/Html/Features/031ScenarioContext/ScenarioContext.html index 00a702ab7..a4ff13862 100644 --- a/docs/Output/Html/Features/031ScenarioContext/ScenarioContext.html +++ b/docs/Output/Html/Features/031ScenarioContext/ScenarioContext.html @@ -344,9 +344,9 @@

      Pending step

      diff --git a/docs/Output/Html/Features/031ScenarioContext/index.html b/docs/Output/Html/Features/031ScenarioContext/index.html index 8cc6ac1bc..a173a28e3 100644 --- a/docs/Output/Html/Features/031ScenarioContext/index.html +++ b/docs/Output/Html/Features/031ScenarioContext/index.html @@ -266,9 +266,9 @@

      031 Scenario Context

      diff --git a/docs/Output/Html/Features/032FeatureContext/FeatureContextFeatures.html b/docs/Output/Html/Features/032FeatureContext/FeatureContextFeatures.html index 6a4dcda75..be79d6656 100644 --- a/docs/Output/Html/Features/032FeatureContext/FeatureContextFeatures.html +++ b/docs/Output/Html/Features/032FeatureContext/FeatureContextFeatures.html @@ -295,9 +295,9 @@

      Showing information of the feature

      diff --git a/docs/Output/Html/Features/032FeatureContext/index.html b/docs/Output/Html/Features/032FeatureContext/index.html index 71ce134de..9fe0e3282 100644 --- a/docs/Output/Html/Features/032FeatureContext/index.html +++ b/docs/Output/Html/Features/032FeatureContext/index.html @@ -266,9 +266,9 @@

      032 Feature Context

      diff --git a/docs/Output/Html/Features/03ScenarioOutline/ScenarioOutline.html b/docs/Output/Html/Features/03ScenarioOutline/ScenarioOutline.html index 3c97ec15b..c1eebd3bb 100644 --- a/docs/Output/Html/Features/03ScenarioOutline/ScenarioOutline.html +++ b/docs/Output/Html/Features/03ScenarioOutline/ScenarioOutline.html @@ -434,9 +434,9 @@

      Examples: more than 100

      diff --git a/docs/Output/Html/Features/03ScenarioOutline/index.html b/docs/Output/Html/Features/03ScenarioOutline/index.html index 06d78bda6..26224c425 100644 --- a/docs/Output/Html/Features/03ScenarioOutline/index.html +++ b/docs/Output/Html/Features/03ScenarioOutline/index.html @@ -266,9 +266,9 @@

      03 Scenario Outline

      diff --git a/docs/Output/Html/Features/04Background/BackgroundFeature.html b/docs/Output/Html/Features/04Background/BackgroundFeature.html index 25f5d62b2..fec879332 100644 --- a/docs/Output/Html/Features/04Background/BackgroundFeature.html +++ b/docs/Output/Html/Features/04Background/BackgroundFeature.html @@ -305,9 +305,9 @@

      Add 2 to the sum

      diff --git a/docs/Output/Html/Features/04Background/index.html b/docs/Output/Html/Features/04Background/index.html index 86598f802..4ef3fb79c 100644 --- a/docs/Output/Html/Features/04Background/index.html +++ b/docs/Output/Html/Features/04Background/index.html @@ -266,9 +266,9 @@

      04 Background

      diff --git a/docs/Output/Html/Features/05TablesAndAssist/TableScenario.html b/docs/Output/Html/Features/05TablesAndAssist/TableScenario.html index 70a818473..2508ea1f6 100644 --- a/docs/Output/Html/Features/05TablesAndAssist/TableScenario.html +++ b/docs/Output/Html/Features/05TablesAndAssist/TableScenario.html @@ -326,9 +326,9 @@

      Example of a wide table

      diff --git a/docs/Output/Html/Features/05TablesAndAssist/index.html b/docs/Output/Html/Features/05TablesAndAssist/index.html index 28bf65518..96f246655 100644 --- a/docs/Output/Html/Features/05TablesAndAssist/index.html +++ b/docs/Output/Html/Features/05TablesAndAssist/index.html @@ -266,9 +266,9 @@

      05 Tables And Assist

      diff --git a/docs/Output/Html/Features/06CompareToAssist/CompareTo.html b/docs/Output/Html/Features/06CompareToAssist/CompareTo.html index 3ebb42362..76a0e1fa4 100644 --- a/docs/Output/Html/Features/06CompareToAssist/CompareTo.html +++ b/docs/Output/Html/Features/06CompareToAssist/CompareTo.html @@ -298,9 +298,9 @@

      CompareToSet

      diff --git a/docs/Output/Html/Features/06CompareToAssist/index.html b/docs/Output/Html/Features/06CompareToAssist/index.html index e48c9576d..614ee7668 100644 --- a/docs/Output/Html/Features/06CompareToAssist/index.html +++ b/docs/Output/Html/Features/06CompareToAssist/index.html @@ -266,9 +266,9 @@

      06 Compare To Assist

      diff --git a/docs/Output/Html/Features/07Localization/Svenska.html b/docs/Output/Html/Features/07Localization/Svenska.html index 77744276f..c382fdfb1 100644 --- a/docs/Output/Html/Features/07Localization/Svenska.html +++ b/docs/Output/Html/Features/07Localization/Svenska.html @@ -280,9 +280,9 @@

      Summera 5 och 7 ska vara 12

      diff --git a/docs/Output/Html/Features/07Localization/Vlaams.html b/docs/Output/Html/Features/07Localization/Vlaams.html index 3604544ce..719a5b726 100644 --- a/docs/Output/Html/Features/07Localization/Vlaams.html +++ b/docs/Output/Html/Features/07Localization/Vlaams.html @@ -277,9 +277,9 @@

      Het Scenario

      diff --git a/docs/Output/Html/Features/07Localization/index.html b/docs/Output/Html/Features/07Localization/index.html index 1fcf10902..7510f5766 100644 --- a/docs/Output/Html/Features/07Localization/index.html +++ b/docs/Output/Html/Features/07Localization/index.html @@ -273,9 +273,9 @@

      07 Localization

      diff --git a/docs/Output/Html/Features/08AttributeOverloading/AttributeOverloading.html b/docs/Output/Html/Features/08AttributeOverloading/AttributeOverloading.html index 849b62668..eeed26aca 100644 --- a/docs/Output/Html/Features/08AttributeOverloading/AttributeOverloading.html +++ b/docs/Output/Html/Features/08AttributeOverloading/AttributeOverloading.html @@ -286,9 +286,9 @@

      Checking number for evenness

      diff --git a/docs/Output/Html/Features/08AttributeOverloading/index.html b/docs/Output/Html/Features/08AttributeOverloading/index.html index d829e4063..8a4045673 100644 --- a/docs/Output/Html/Features/08AttributeOverloading/index.html +++ b/docs/Output/Html/Features/08AttributeOverloading/index.html @@ -266,9 +266,9 @@

      08 Attribute Overloading

      diff --git a/docs/Output/Html/Features/09CallingStepsFromSteps/CallingStepsFromSteps.html b/docs/Output/Html/Features/09CallingStepsFromSteps/CallingStepsFromSteps.html index feaeade71..2c03a63b6 100644 --- a/docs/Output/Html/Features/09CallingStepsFromSteps/CallingStepsFromSteps.html +++ b/docs/Output/Html/Features/09CallingStepsFromSteps/CallingStepsFromSteps.html @@ -298,9 +298,9 @@

      Do something meaningful

      diff --git a/docs/Output/Html/Features/09CallingStepsFromSteps/index.html b/docs/Output/Html/Features/09CallingStepsFromSteps/index.html index cf01a81a7..d74b415c1 100644 --- a/docs/Output/Html/Features/09CallingStepsFromSteps/index.html +++ b/docs/Output/Html/Features/09CallingStepsFromSteps/index.html @@ -266,9 +266,9 @@

      09 Calling Steps From Steps

      diff --git a/docs/Output/Html/Features/10StepTransformation/StepTransformation.html b/docs/Output/Html/Features/10StepTransformation/StepTransformation.html index 895782309..6bf1f15e4 100644 --- a/docs/Output/Html/Features/10StepTransformation/StepTransformation.html +++ b/docs/Output/Html/Features/10StepTransformation/StepTransformation.html @@ -278,9 +278,9 @@

      Steps with non-string arguments

      diff --git a/docs/Output/Html/Features/10StepTransformation/index.html b/docs/Output/Html/Features/10StepTransformation/index.html index 632e44e45..2988928df 100644 --- a/docs/Output/Html/Features/10StepTransformation/index.html +++ b/docs/Output/Html/Features/10StepTransformation/index.html @@ -266,9 +266,9 @@

      10 Step Transformation

      diff --git a/docs/Output/Html/Features/11ContextInjection/ContextInjection.html b/docs/Output/Html/Features/11ContextInjection/ContextInjection.html index b076f6420..a2cd731b9 100644 --- a/docs/Output/Html/Features/11ContextInjection/ContextInjection.html +++ b/docs/Output/Html/Features/11ContextInjection/ContextInjection.html @@ -346,9 +346,9 @@

      Feature with a dependent context

      diff --git a/docs/Output/Html/Features/11ContextInjection/index.html b/docs/Output/Html/Features/11ContextInjection/index.html index 0cf18a2cb..c1c68b1ed 100644 --- a/docs/Output/Html/Features/11ContextInjection/index.html +++ b/docs/Output/Html/Features/11ContextInjection/index.html @@ -268,9 +268,9 @@

      11 Context Injection

      diff --git a/docs/Output/Html/Features/12NestedFolders/ChildFolder/ChildChildFolder/NestedFolderExample.html b/docs/Output/Html/Features/12NestedFolders/ChildFolder/ChildChildFolder/NestedFolderExample.html index d588164d9..d3e5d767e 100644 --- a/docs/Output/Html/Features/12NestedFolders/ChildFolder/ChildChildFolder/NestedFolderExample.html +++ b/docs/Output/Html/Features/12NestedFolders/ChildFolder/ChildChildFolder/NestedFolderExample.html @@ -281,9 +281,9 @@

      Nested - Add two numbers

      diff --git a/docs/Output/Html/Features/12NestedFolders/ChildFolder/ChildChildFolder/index.html b/docs/Output/Html/Features/12NestedFolders/ChildFolder/ChildChildFolder/index.html index 6cf643fd1..a09b53504 100644 --- a/docs/Output/Html/Features/12NestedFolders/ChildFolder/ChildChildFolder/index.html +++ b/docs/Output/Html/Features/12NestedFolders/ChildFolder/ChildChildFolder/index.html @@ -266,9 +266,9 @@

      Child Child Folder

      diff --git a/docs/Output/Html/Features/12NestedFolders/ChildFolder/index.html b/docs/Output/Html/Features/12NestedFolders/ChildFolder/index.html index e999b18ef..30b7489c1 100644 --- a/docs/Output/Html/Features/12NestedFolders/ChildFolder/index.html +++ b/docs/Output/Html/Features/12NestedFolders/ChildFolder/index.html @@ -256,9 +256,9 @@

      Child Folder

        diff --git a/docs/Output/Html/Features/12NestedFolders/index.html b/docs/Output/Html/Features/12NestedFolders/index.html index a6174ed95..0de0080d6 100644 --- a/docs/Output/Html/Features/12NestedFolders/index.html +++ b/docs/Output/Html/Features/12NestedFolders/index.html @@ -256,9 +256,9 @@

        12 Nested Folders

          diff --git a/docs/Output/Html/Features/13MultilineText/MultilineFeatureExample.html b/docs/Output/Html/Features/13MultilineText/MultilineFeatureExample.html index 2fc251502..fd3a3f267 100644 --- a/docs/Output/Html/Features/13MultilineText/MultilineFeatureExample.html +++ b/docs/Output/Html/Features/13MultilineText/MultilineFeatureExample.html @@ -281,9 +281,9 @@

          Mutliline Output

        diff --git a/docs/Output/Html/Features/13MultilineText/index.html b/docs/Output/Html/Features/13MultilineText/index.html index bb38c5bba..1a3dab8a9 100644 --- a/docs/Output/Html/Features/13MultilineText/index.html +++ b/docs/Output/Html/Features/13MultilineText/index.html @@ -266,9 +266,9 @@

        13 Multiline Text

      diff --git a/docs/Output/Html/Features/14MarkdownExample/MarkdownExamples.html b/docs/Output/Html/Features/14MarkdownExample/MarkdownExamples.html index 1ea8ef047..86edd5300 100644 --- a/docs/Output/Html/Features/14MarkdownExample/MarkdownExamples.html +++ b/docs/Output/Html/Features/14MarkdownExample/MarkdownExamples.html @@ -396,9 +396,9 @@

      Examples:

      diff --git a/docs/Output/Html/Features/14MarkdownExample/index.html b/docs/Output/Html/Features/14MarkdownExample/index.html index e1c1812d2..6f90bad55 100644 --- a/docs/Output/Html/Features/14MarkdownExample/index.html +++ b/docs/Output/Html/Features/14MarkdownExample/index.html @@ -298,9 +298,9 @@

      14 Markdown Example

      diff --git a/docs/Output/Html/Features/15Pickles/InteractiveDHTMLView.html b/docs/Output/Html/Features/15Pickles/InteractiveDHTMLView.html index a962a57eb..420369c78 100644 --- a/docs/Output/Html/Features/15Pickles/InteractiveDHTMLView.html +++ b/docs/Output/Html/Features/15Pickles/InteractiveDHTMLView.html @@ -278,9 +278,9 @@

      Scenario with large data table

      diff --git a/docs/Output/Html/Features/15Pickles/index.html b/docs/Output/Html/Features/15Pickles/index.html index 7fe6ca04f..c5635730b 100644 --- a/docs/Output/Html/Features/15Pickles/index.html +++ b/docs/Output/Html/Features/15Pickles/index.html @@ -267,9 +267,9 @@

      15 Pickles

      diff --git a/docs/Output/Html/Features/Arithmetic.html b/docs/Output/Html/Features/Arithmetic.html index e6acd9793..a2d57449b 100644 --- a/docs/Output/Html/Features/Arithmetic.html +++ b/docs/Output/Html/Features/Arithmetic.html @@ -350,9 +350,9 @@

      Divide two numbers

      diff --git a/docs/Output/Html/Features/Trigonometry.html b/docs/Output/Html/Features/Trigonometry.html index cd0c4d97b..4f16d665b 100644 --- a/docs/Output/Html/Features/Trigonometry.html +++ b/docs/Output/Html/Features/Trigonometry.html @@ -317,9 +317,9 @@

      Tangent

      diff --git a/docs/Output/Html/Features/Workflow/ClearingScreen.html b/docs/Output/Html/Features/Workflow/ClearingScreen.html index fb6b185b6..0c564c890 100644 --- a/docs/Output/Html/Features/Workflow/ClearingScreen.html +++ b/docs/Output/Html/Features/Workflow/ClearingScreen.html @@ -281,9 +281,9 @@

      Clear the screen

      diff --git a/docs/Output/Html/Features/Workflow/index.html b/docs/Output/Html/Features/Workflow/index.html index fb101c5da..0ba60d84c 100644 --- a/docs/Output/Html/Features/Workflow/index.html +++ b/docs/Output/Html/Features/Workflow/index.html @@ -266,9 +266,9 @@

      Workflow

      diff --git a/docs/Output/Html/Features/index.html b/docs/Output/Html/Features/index.html index d76248f6b..ea812a42d 100644 --- a/docs/Output/Html/Features/index.html +++ b/docs/Output/Html/Features/index.html @@ -278,9 +278,9 @@

      Features

      diff --git a/docs/Output/Html/img/failure.png b/docs/Output/Html/img/failure.png index 71c35403b44d5cd892f849e5959b3e03ef822471..b622cd135070b50763ef3ad06ab92716a0bbe863 100644 GIT binary patch delta 21 dcmccXe%F11C)YIw2HtCo6Y?wPYz*#F1^{B@2&(`9 delta 21 dcmccXe%F11C)afb2Hxw8P8zc-HU@Vo0{~vL2o?YU diff --git a/docs/Output/Html/img/inconclusive.png b/docs/Output/Html/img/inconclusive.png index 677add9aec1329e1e75354a5c6175eb23174af91..0b3bf52e0bb6fede650a6716440bb8f5d140629b 100644 GIT binary patch delta 21 dcmX?Vf7E`04cAo$2HvZTw$~y)Zgi`c2LN5?2#5dx delta 21 dcmX?Vf7E`04c9dW2HtCo6Y?wPY;>!a2LN2-2toh= diff --git a/docs/Output/Html/img/success.png b/docs/Output/Html/img/success.png index b7292d7e19d6555925dd99793bda186f2595a58f..2748ec6a73a65cc714bedcb3176b2bdb53a47780 100644 GIT binary patch delta 21 dcmez5{>goUC)YIw2HtCo6Y?wPYz&^S3;goUC)afb2Hxw8P8zc-HU`gE1^{9u2vq<8 diff --git a/docs/Output/Html/index.html b/docs/Output/Html/index.html index 0518db3b6..c8838f5fa 100644 --- a/docs/Output/Html/index.html +++ b/docs/Output/Html/index.html @@ -256,9 +256,9 @@

      Examples

        diff --git a/docs/Output/Html/readme.html b/docs/Output/Html/readme.html index fd74063b5..c5302df82 100644 --- a/docs/Output/Html/readme.html +++ b/docs/Output/Html/readme.html @@ -255,9 +255,9 @@

        In the Features-folders you'll find quite a large population of .feature files that you can use to test out pickles on.

        diff --git a/docs/Output/JSON/pickledFeatures.json b/docs/Output/JSON/pickledFeatures.json index b2147c040..00d037f73 100644 --- a/docs/Output/JSON/pickledFeatures.json +++ b/docs/Output/JSON/pickledFeatures.json @@ -36,7 +36,8 @@ "Tags": [], "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false } }, { @@ -90,19 +91,22 @@ "Tags": [], "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false } } ], "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false }, "Tags": [] }, "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false } }, { @@ -141,19 +145,22 @@ "Tags": [], "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false } } ], "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false }, "Tags": [] }, "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false } }, { @@ -185,7 +192,8 @@ "Tags": [], "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false } }, { @@ -211,7 +219,8 @@ "Tags": [], "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false } }, { @@ -237,7 +246,8 @@ "Tags": [], "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false } }, { @@ -263,7 +273,8 @@ "Tags": [], "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false } }, { @@ -289,19 +300,22 @@ "Tags": [], "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false } } ], "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false }, "Tags": [] }, "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false } }, { @@ -349,7 +363,8 @@ ], "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false } }, { @@ -382,7 +397,8 @@ "Tags": [], "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false } }, { @@ -417,7 +433,8 @@ ], "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false } }, { @@ -454,7 +471,8 @@ ], "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false } }, { @@ -490,13 +508,15 @@ ], "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false } } ], "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false }, "Tags": [ "@allAboutTags", @@ -505,7 +525,8 @@ }, "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false } }, { @@ -531,7 +552,8 @@ "30", { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": true } ], [ @@ -540,7 +562,8 @@ "40", { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": true } ], [ @@ -549,7 +572,8 @@ "50", { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": true } ] ] @@ -575,7 +599,8 @@ "120", { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": true } ], [ @@ -584,7 +609,8 @@ "1020", { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": true } ] ] @@ -635,7 +661,8 @@ "Tags": [], "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false } }, { @@ -655,7 +682,8 @@ "30", { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": true } ], [ @@ -664,7 +692,8 @@ "40", { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": true } ], [ @@ -673,7 +702,8 @@ "50", { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": true } ] ] @@ -696,7 +726,8 @@ "120", { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": true } ], [ @@ -705,7 +736,8 @@ "1020", { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": true } ] ] @@ -750,19 +782,22 @@ "Tags": [], "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false } } ], "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false }, "Tags": [] }, "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false } }, { @@ -794,7 +829,8 @@ "Tags": [], "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false } }, { @@ -839,7 +875,8 @@ ], "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false } }, { @@ -886,7 +923,8 @@ "Tags": [], "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false } }, { @@ -908,7 +946,8 @@ ], "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false } }, { @@ -934,19 +973,22 @@ "Tags": [], "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false } } ], "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false }, "Tags": [] }, "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false } }, { @@ -978,7 +1020,8 @@ "Tags": [], "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false } }, { @@ -1032,13 +1075,15 @@ "Tags": [], "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false } } ], "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false }, "Tags": [ "@showUpInScenarioInfo", @@ -1047,7 +1092,8 @@ }, "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false } }, { @@ -1079,7 +1125,8 @@ "Tags": [], "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false } }, { @@ -1105,7 +1152,8 @@ "Tags": [], "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false } } ], @@ -1131,18 +1179,21 @@ "Tags": [], "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false } }, "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false }, "Tags": [] }, "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false } }, { @@ -1225,7 +1276,8 @@ "Tags": [], "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false } }, { @@ -1302,7 +1354,8 @@ "Tags": [], "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false } }, { @@ -1368,7 +1421,8 @@ "Tags": [], "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false } }, { @@ -1459,19 +1513,22 @@ "Tags": [], "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false } } ], "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false }, "Tags": [] }, "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false } }, { @@ -1600,7 +1657,8 @@ "Tags": [], "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false } }, { @@ -1700,19 +1758,22 @@ "Tags": [], "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false } } ], "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false }, "Tags": [] }, "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false } }, { @@ -1758,19 +1819,22 @@ "Tags": [], "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false } } ], "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false }, "Tags": [] }, "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false } }, { @@ -1816,19 +1880,22 @@ "Tags": [], "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false } } ], "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false }, "Tags": [] }, "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false } }, { @@ -1895,19 +1962,22 @@ "Tags": [], "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false } } ], "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false }, "Tags": [] }, "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false } }, { @@ -1953,7 +2023,8 @@ "Tags": [], "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false } }, { @@ -1986,19 +2057,22 @@ "Tags": [], "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false } } ], "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false }, "Tags": [] }, "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false } }, { @@ -2037,19 +2111,22 @@ "Tags": [], "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false } } ], "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false }, "Tags": [] }, "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false } }, { @@ -2081,7 +2158,8 @@ "Tags": [], "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false } }, { @@ -2107,7 +2185,8 @@ "Tags": [], "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false } }, { @@ -2133,7 +2212,8 @@ "Tags": [], "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false } }, { @@ -2166,7 +2246,8 @@ "Tags": [], "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false } }, { @@ -2199,19 +2280,22 @@ "Tags": [], "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false } } ], "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false }, "Tags": [] }, "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false } }, { @@ -2259,19 +2343,22 @@ ], "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false } } ], "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false }, "Tags": [] }, "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false } }, { @@ -2313,19 +2400,22 @@ ], "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false } } ], "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false }, "Tags": [] }, "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false } }, { @@ -2357,7 +2447,8 @@ "Tags": [], "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false } }, { @@ -2376,7 +2467,8 @@ "value2", { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": true } ] ] @@ -2409,7 +2501,8 @@ ], "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false } } ], @@ -2435,18 +2528,21 @@ "Tags": [], "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false } }, "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false }, "Tags": [] }, "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false } }, { @@ -2581,19 +2677,22 @@ "Tags": [], "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false } } ], "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false }, "Tags": [] }, "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false } }, { @@ -2646,7 +2745,8 @@ ], "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false } }, { @@ -2689,7 +2789,8 @@ ], "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false } }, { @@ -2732,7 +2833,8 @@ ], "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false } }, { @@ -2775,19 +2877,22 @@ ], "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false } } ], "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false }, "Tags": [] }, "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false } }, { @@ -2829,7 +2934,8 @@ ], "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false } }, { @@ -2865,7 +2971,8 @@ ], "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false } }, { @@ -2901,19 +3008,22 @@ ], "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false } } ], "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false }, "Tags": [] }, "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false } }, { @@ -2962,19 +3072,22 @@ ], "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false } } ], "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false }, "Tags": [] }, "Result": { "WasExecuted": false, - "WasSuccessful": false + "WasSuccessful": false, + "WasProvided": false } } ], @@ -3133,7 +3246,7 @@ }, "Configuration": { "SutName": "Pickles", - "SutVersion": "2.19.0", - "GeneratedOn": "20 Juli 2018 19:39:02" + "SutVersion": "2.20.0", + "GeneratedOn": "9 Oktober 2018 17:01:58" } } \ No newline at end of file diff --git a/docs/Output/Word/Pickles.docx b/docs/Output/Word/Pickles.docx index 0210d9768f4e3ecb546e06f4ef911aac1a12669a..5c533365e596df15a38689f58629f128b91d4fd0 100644 GIT binary patch delta 1394 zcmeyE`!<&^z?+#xgn@y9gTc1L(|04^S1Aqu)|n6ORPGVX~Fx?mHsNvBfEqJE--_(&LZg=O6oa{Pypp zueY`yH11iqvDWdCffD1FTeFs}=i2nOLit42&Isq#f37@yl~!=DWJx*e%DwV=nx(ti z{B~a8yWnq~aoq1`re#=3z%S2GhspICk4omGPk4MLVYBpuNiN+tGIngPy6yPBo^#o` z_fZ8ZH&$$9iWm5m+oFSg$*V?R4x z>3`_Q8$W)@32yn%Y?3|Wrh@C4-oQEOlL}|XX8gXsM)Gnq|O#&%ggeO+ovw9@Unv(n$p;71QrLxt?-$0Z-5J6}6>ynv>IXj51rCjCc#~ zYH#^BXUqC?o)ZI3%$zWD8qdyOY8MyJ-}{FJEv(;ZZDC>oh4toTx-N`h*5r43SHQu) zbJ}`6@5!h2o$4<*l_Z@wkQ1?E&I{oyL2YTjrr%~dw|VD>i8ZXJ*GmaI``o#3q552T zp8nInU*8tg1RA}vut+TFn>1rVM|PUl!t<6{wR?BFAAfWq-Iq0RLe}(B8~5JtW`}QV zY}0;~l)RJg=&goDc6$y`xZZQt*EDp*7}T6KM<_TTBJURWI5Ve@nK6USSDGZ(Y_Y4d3u zI?A|y(#MD0lM}>G-aT8ida;S0rw`jg`KJam|81YE$=Gl2_mL4b)GdR9Pfm_Ew5-4F z*J2>h7Qgi6UncL8QKzQeD2SEd)a4? z-~O$r3Y}E)V2^>-^4}T@Sxn5QUeLG9-FWZr#o)p>o26tqSKdmOeX_-IOQcNoy@n(^ zBe4>WYsWO(9=?c6I(ld6R_nYesT%WIMJjshFRNHykW6N}_YxGq56)EtKUM$*FyH5G z8h6C*dj?6})4E_`b&M}%#lejG9IwS^{nFQEnaz6X@7E5$ld9{tN8iyp{_8@ys`}!4 zJ5E_0KKQ#J+V9}h9sXt}1rBSvbXEU+iO~x5c_F&E{{R20)?D|BFS}j2?(C%BX1Hm| z`9o`>L;Ed#C*3}LcAwA7qEM%^QJwdd7C(A(>@DYdA*Zb4DSq#J9Sf!$IcgXee2lf5 z{lWtYC)cV*UQ6z}i4Q!bmU@cpb8J|A#`jSn@8j4SCe$$A{L!csnx3;vtl@>y`w`a>X-d=WcogiPwrcHsodXU*(YP=i&0n=$TSlPgWO`P5TwoOH%1u_?N!qn{C6{`2Df6P5zyQc8M2lo_d||5enKQF)4aemH^iq&8+yj6B1++*LkX>&N5#0 z%x=B5d&VEjOrWTQ|BN%8dXnsF5&ygox!YI&7PD++h@PWOR$tj=em}A z=9~o`nya+e`B`Sg?%nC$o^(Immv!QFt=XkI?!Coohi_bJ^Gr(4o$={tRI|#t{f9Wc znVw(ESuw56;@=_Ga`8RBlVoQZ+si5Ox|^A=J?WbkbUCcv z=&6$un_3Nj)Xg?&>&s8Jn#AX%d3?XFXr-AJn}2Ods6&-~x#qD2an7j@!D(yn>mGmP zofV?%%IJ*;o6`WJ|*@tB(0c3wnL7r2ktN>Tl^aY4_dS zsJx4NLO0FYa;SDS%W=U&pWf&-Rc5-o^vOxCw3JxDAzr=5SzD|eXOv%caQ&gxT+`jIqt>5yLu&57jOr2 z)%s;NUwzgmx7m4m$O{jTt9F@+OHCK~KDr@ps_{-a*|9w#bZZ>cUBjT^{zBi+-DQBxI^a!mYH{=*QMxMZqRqCVYJxnI*Ff zZe2h0Yv!_l-rNVP+P2i&E($F=_xg?0_Ddi2zQmrqxWahdmUAKxYImGH{=n(ZCQ;ru zg562Joc6ZQy+p*T4!*eme}9Gh!RoAA4Zo^9Ubx!3O)K%7u{HXW=F*^m23 z8M0^M4_zY-zq}jsK58j0*%q_x%Rvbich5Ppk5p45460dp`;@0F5ssKVSwm0A=BDfI z-yN=N#2+XWFRq9B}})^A$(Pp+uW$DHxz&HTr-_v(A}THFbK70NsJ%R<=& z^5s3HbB`3h)UxvUs-(R@Fj=#-{xVO|49PXynPVnr^k$0KL~MPz;JER@E04Fa`ZsMY z5lwJ>F}t)Xp7*$kkj=}cHA%~aj}}i(G1gmTq{g_n?TYEC$b8`<1L$SLAJ| zGhq{nWANqk$>HoSUU|ymp{G{FwAjqw;k$d@7V4fB>uao+7LGVIrOU+Mp;#?qU05FH z=LQSALzj=eeSJBSE7t}2-BNWQYpN_DDI(yfk0dQ(wBdkyi1Z#9J(j4_wEbfD@GohZI{X(s5R5CQHeiT6q20O zp_qC3+@JgQvdHRiR7RP@$gRiX@`ceIZGx=^mFzWCmbQ&xu${w|32J2-WRznMva!Zd!8w(3`f{2EjxH2I`=-_qhMXBh1332L%}gPp HGtArpat56- delta 951 zcmcbgdq0;iz?+#xgn@y9gW>j^FFqUjzDjX`7%%@Rz1z$!ZOLe4l4_ZpW?^EMmYSSq zVrXcfq@ZtSqaT!-lUS0OpI4lbSx{_;YRKj?nTtGNQ{vNkxhMN;dek=?2(Ud^t?<5^ zSAr+h!|d&%+ZsXFkI6A>C8YS@dX^LW#bdA2N}`g*VY zpti;RTMJbJPk1miZ`vjMYEsU{J5N)##;jR5*<$VoU+Z59yNrHJGU<41yEM-9g17uF z!M4of5!b!vOk1~XaftpVHYww2f%WF+6^_q5m}Y*+wDa1Gu!GH^x8>OO2>95(v-+TN z!y}w|TFbu3<@{F*yp#`4);k&XyijR}L65klc&HOo74ORYshjUf@l1WoKTE!K$BK%) zjg=;BBL5g?$-rZDZC<|(S$^Vuma zY)wgriC8xp@kE1t9O^~{ynH4{GV$kHw39T9~%XT*Y+2)_| zan6?Y=hXMDN}Bjg;ON9BPVd#{$^Cuv)Eq6KUu$h)VgW_h=Eb@$j9}K}*LqhVLWlL6 z7{Re{|Lc^>$-ah`_1=Dm4FuZOCsp1*vUWk!3Qu#v9Bqq6Pqp6A{VD!JRc2x`o!Sp< z7!?=J`nofACWm zPFn2pu*Y2V+oU5QQ#BH9rL{&sw)QFtHsLbi>)XgInPqV6`k`Mlm;LkRK3LVZrQUW? zXwkXXZ=|+g`l$CM_TDownload

      - If you prefer to download the .zip files, you can so from the Github release page. + If you prefer to download the .zip files, you can so from the Github release page.

      + \ No newline at end of file diff --git a/src/Pickles/Pickles.UserInterface.UnitTests/Properties/AssemblyInfo.cs b/src/Pickles/Pickles.UserInterface.UnitTests/Properties/AssemblyInfo.cs new file mode 100644 index 000000000..1de384d1a --- /dev/null +++ b/src/Pickles/Pickles.UserInterface.UnitTests/Properties/AssemblyInfo.cs @@ -0,0 +1,4 @@ +using System.Reflection; + +[assembly: AssemblyTitle("Pickles.UserInterface.Test")] +[assembly: AssemblyDescription("Unit and integration tests for the Pickles UI")] \ No newline at end of file diff --git a/src/Pickles/Pickles.UserInterface.UnitTests/app.config b/src/Pickles/Pickles.UserInterface.UnitTests/app.config new file mode 100644 index 000000000..61de8c5ac --- /dev/null +++ b/src/Pickles/Pickles.UserInterface.UnitTests/app.config @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/Pickles/Pickles.UserInterface.UnitTests/packages.config b/src/Pickles/Pickles.UserInterface.UnitTests/packages.config new file mode 100644 index 000000000..bb492fe61 --- /dev/null +++ b/src/Pickles/Pickles.UserInterface.UnitTests/packages.config @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/src/Pickles/Pickles.UserInterface/CommandGeneration/CLICommandGenerator.cs b/src/Pickles/Pickles.UserInterface/CommandGeneration/CLICommandGenerator.cs new file mode 100644 index 000000000..6168238c3 --- /dev/null +++ b/src/Pickles/Pickles.UserInterface/CommandGeneration/CLICommandGenerator.cs @@ -0,0 +1,79 @@ +// -------------------------------------------------------------------------------------------------------------------- +// +// Copyright 2011 Jeffrey Cameron +// Copyright 2012-present PicklesDoc team and community contributors +// +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// -------------------------------------------------------------------------------------------------------------------- + +using System; +using System.Text; + +using PicklesDoc.Pickles.UserInterface.Settings; + +namespace PicklesDoc.Pickles.UserInterface.CommandGeneration +{ + public class CLICommandGenerator : CommandGeneratorBase + { + protected override string GenerateSingleCommandLine( + MainModel model, + string outputDirectory, + DocumentationFormat documentationFormat, + string selectedLanguage) + { + var result = new StringBuilder("pickles.exe"); + result.AppendFormat(" --feature-directory=\"{0}\"", model.FeatureDirectory); + result.AppendFormatIfNotEmpty(" --output-directory=\"{0}\"", outputDirectory); + result.AppendFormatIfNotEmpty(" --system-under-test-name={0}", model.ProjectName); + result.AppendFormatIfNotEmpty(" --system-under-test-version={0}", model.ProjectVersion); + + if (model.IncludeTestResults) + { + result.AppendFormatIfNotEmpty(" --link-results-file=\"{0}\"", model.TestResultsFile); + + if (model.TestResultsFormat != TestResultsFormat.NUnit) + { + result.AppendFormat(" --test-results-format={0}", model.TestResultsFormat.ToString().ToLowerInvariant()); + } + } + + if (!string.Equals(selectedLanguage, "en", StringComparison.OrdinalIgnoreCase)) + { + result.AppendFormatIfNotEmpty(" --language={0}", selectedLanguage); + } + + if (documentationFormat != DocumentationFormat.Html) + { + result.AppendFormat(" --documentation-format={0}", documentationFormat.ToString().ToLowerInvariant()); + } + + if (model.IncludeExperimentalFeatures) + { + result.Append(" --include-experimental-features"); + } + + if (!model.EnableComments) + { + result.Append(" --enableComments=false"); + } + + result.AppendFormatIfNotEmpty(" --excludeTags={0}", model.ExcludeTags); + result.AppendFormatIfNotEmpty(" --hideTags={0}", model.HideTags); + + return result.ToString(); + } + + } +} \ No newline at end of file diff --git a/src/Pickles/Pickles.UserInterface/CommandGeneration/CommandGeneratorBase.cs b/src/Pickles/Pickles.UserInterface/CommandGeneration/CommandGeneratorBase.cs new file mode 100644 index 000000000..5d03d776b --- /dev/null +++ b/src/Pickles/Pickles.UserInterface/CommandGeneration/CommandGeneratorBase.cs @@ -0,0 +1,49 @@ +// -------------------------------------------------------------------------------------------------------------------- +// +// Copyright 2011 Jeffrey Cameron +// Copyright 2012-present PicklesDoc team and community contributors +// +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// -------------------------------------------------------------------------------------------------------------------- + +using System; +using System.IO; +using System.Linq; + +using PicklesDoc.Pickles.UserInterface.Settings; + +namespace PicklesDoc.Pickles.UserInterface.CommandGeneration +{ + public abstract class CommandGeneratorBase + { + public string Generate(MainModel model, string selectedLanguage) + { + return (from documentationFormat in model.DocumentationFormats + let outputDirectory = model.CreateDirectoryForEachOutputFormat + ? model.OutputDirectory.TrimEnd(Path.DirectorySeparatorChar) + Path.DirectorySeparatorChar + documentationFormat + : model.OutputDirectory + ?.ToLowerInvariant() + select this.GenerateSingleCommandLine(model, outputDirectory, documentationFormat, selectedLanguage)) + .Aggregate(string.Empty, (c, n) => c + Environment.NewLine + n) + .Trim(); + } + + protected abstract string GenerateSingleCommandLine( + MainModel model, + string outputDirectory, + DocumentationFormat documentationFormat, + string selectedLanguage); + } +} \ No newline at end of file diff --git a/src/Pickles/Pickles.UserInterface/CommandGeneration/PowerShellCommandGenerator.cs b/src/Pickles/Pickles.UserInterface/CommandGeneration/PowerShellCommandGenerator.cs new file mode 100644 index 000000000..b3753ac69 --- /dev/null +++ b/src/Pickles/Pickles.UserInterface/CommandGeneration/PowerShellCommandGenerator.cs @@ -0,0 +1,79 @@ +// -------------------------------------------------------------------------------------------------------------------- +// +// Copyright 2011 Jeffrey Cameron +// Copyright 2012-present PicklesDoc team and community contributors +// +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// -------------------------------------------------------------------------------------------------------------------- + +using System; +using System.Text; + +using PicklesDoc.Pickles.UserInterface.Settings; + +namespace PicklesDoc.Pickles.UserInterface.CommandGeneration +{ + public class PowerShellCommandGenerator : CommandGeneratorBase + { + /// + protected override string GenerateSingleCommandLine( + MainModel model, + string outputDirectory, + DocumentationFormat documentationFormat, + string selectedLanguage) + { + var result = new StringBuilder("Pickle-Features") + .AppendFormat(" -FeatureDirectory \"{0}\"", model.FeatureDirectory) + .AppendFormatIfNotEmpty(" -OutputDirectory \"{0}\"", outputDirectory) + .AppendFormatIfNotEmpty(" -SystemUnderTestName {0}", model.ProjectName) + .AppendFormatIfNotEmpty(" -SystemUnderTestVersion {0}", model.ProjectVersion); + + if (model.IncludeTestResults) + { + result.AppendFormatIfNotEmpty(" -TestResultsFile \"{0}\"", model.TestResultsFile); + + if (model.TestResultsFormat != TestResultsFormat.NUnit) + { + result.AppendFormat(" -TestResultsFormat {0}", model.TestResultsFormat.ToString().ToLowerInvariant()); + } + } + + if (!string.Equals(selectedLanguage, "en", StringComparison.OrdinalIgnoreCase)) + { + result.AppendFormatIfNotEmpty(" -Language {0}", selectedLanguage); + } + + if (documentationFormat != DocumentationFormat.Html) + { + result.AppendFormat(" -DocumentationFormat {0}", documentationFormat.ToString()); + } + + if (model.IncludeExperimentalFeatures) + { + result.Append(" -IncludeExperimentalFeatures"); + } + + if (!model.EnableComments) + { + result.Append(" -EnableComments false"); + } + + result.AppendFormatIfNotEmpty(" -ExcludeTags {0}", model.ExcludeTags); + result.AppendFormatIfNotEmpty(" -HideTags {0}", model.HideTags); + + return result.ToString(); + } + } +} \ No newline at end of file diff --git a/src/Pickles/Pickles.UserInterface/CommandGeneration/StringBuilderExtensions.cs b/src/Pickles/Pickles.UserInterface/CommandGeneration/StringBuilderExtensions.cs new file mode 100644 index 000000000..af55b58c5 --- /dev/null +++ b/src/Pickles/Pickles.UserInterface/CommandGeneration/StringBuilderExtensions.cs @@ -0,0 +1,34 @@ +// -------------------------------------------------------------------------------------------------------------------- +// +// Copyright 2011 Jeffrey Cameron +// Copyright 2012-present PicklesDoc team and community contributors +// +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// -------------------------------------------------------------------------------------------------------------------- + +using System.Text; + +namespace PicklesDoc.Pickles.UserInterface.CommandGeneration +{ + public static class StringBuilderExtensions + { + public static StringBuilder AppendFormatIfNotEmpty(this StringBuilder stringBuilder, string format, string value) + { + return string.IsNullOrWhiteSpace(value) + ? stringBuilder + : stringBuilder.AppendFormat(format, value); + } + } +} \ No newline at end of file diff --git a/src/Pickles/Pickles.UserInterface/MainWindow.xaml b/src/Pickles/Pickles.UserInterface/MainWindow.xaml index a4f3b933a..d3610edb3 100644 --- a/src/Pickles/Pickles.UserInterface/MainWindow.xaml +++ b/src/Pickles/Pickles.UserInterface/MainWindow.xaml @@ -48,6 +48,7 @@ + @@ -121,6 +122,17 @@