├── .appveyor.yml ├── .gitignore ├── .sonarqube-analysisproperties.xml ├── .vscode ├── extensions.json ├── settings.json └── tasks.json ├── CSF.Screenplay.Abstractions ├── Abilities │ └── UseAStopwatch.cs ├── Actor.abilities.cs ├── Actor.cs ├── Actor.disposable.cs ├── Actor.events.cs ├── Actor.performer.cs ├── Actor.phases.cs ├── ActorExtensions.abilities.cs ├── ActorExtensions.performableBuilders.cs ├── Actors │ ├── ActorEventArgs.cs │ ├── GainAbilityEventArgs.cs │ ├── ICanPerformGiven.cs │ ├── ICanPerformThen.cs │ ├── ICanPerformWhen.cs │ ├── IHasPerformableEvents.cs │ ├── PerformableAssetEventArgs.cs │ ├── PerformableEventArgs.cs │ ├── PerformableFailureEventArgs.cs │ ├── PerformableResultEventArgs.cs │ └── PerformancePhase.cs ├── CSF.Screenplay.Abstractions.csproj ├── CastExtensions.cs ├── ICanPerform.cs ├── ICanReport.cs ├── ICast.cs ├── IFormatsReportFragment.cs ├── IHasAbilities.cs ├── IHasName.cs ├── IHasPerformanceIdentity.cs ├── IHasServiceProvider.cs ├── IHostsPerformance.cs ├── IPerformable.cs ├── IPerformableWithResult.cs ├── IPerformableWithResult.generic.cs ├── IPerformance.cs ├── IPersona.cs ├── IStage.cs ├── Performables │ ├── IGetsPerformable.cs │ ├── IGetsPerformableWithResult.cs │ ├── IGetsPerformableWithResult.generic.cs │ ├── IProvidesTimeSpan.cs │ ├── PerformableException.cs │ ├── ReadTheStopwatch.cs │ ├── ResetTheStopwatch.cs │ ├── StartTheStopwatch.cs │ ├── StopTheStopwatch.cs │ ├── StopwatchBuilder.cs │ ├── TimeSpanBuilder.cs │ └── TimeSpanBuilder.generic.cs ├── PerformanceStarter.cs ├── Performances │ ├── IBeginsAndEndsPerformance.cs │ ├── ICreatesPerformance.cs │ ├── IHasPerformanceEvents.cs │ ├── IRelaysPerformanceEvents.cs │ ├── IdentifierAndName.cs │ ├── PerformanceCompleteEventArgs.cs │ ├── PerformanceEventArgs.cs │ ├── PerformanceScopeEventArgs.cs │ └── PerformanceState.cs ├── ReportFragment.cs ├── Reporting │ ├── IFormattableValue.cs │ ├── IFormatterRegistry.cs │ ├── IGetsReportFormat.cs │ ├── IGetsValueFormatter.cs │ ├── IReporter.cs │ ├── IValueFormatter.cs │ ├── NameAndValue.cs │ ├── ReportFormat.cs │ └── ValueFormatterExtensions.cs ├── Resources │ ├── AbilityReportStrings.cs │ ├── AbilityReportStrings.restext │ ├── PerformableReportStrings.cs │ └── PerformableReportStrings.restext └── StageExtensions.cs ├── CSF.Screenplay.Docs ├── .nojekyll ├── CSF.Screenplay.Docs.proj ├── README.md ├── docfx.json ├── docs │ ├── GettingReports.md │ ├── HowScreenplayAndPerformanceRelate.md │ ├── MakeupOfAScreenplay.md │ ├── ScreenplayInTheTestingStack.md │ ├── StandaloneScreenplay.md │ ├── SuitabilityAsATestingTool.md │ ├── WritingTests.md │ ├── builderPattern │ │ ├── ConsumingBuilders.md │ │ ├── WritingBuilders.md │ │ ├── index.md │ │ └── toc.yml │ ├── dependencyInjection │ │ ├── AddingServices.md │ │ ├── DependencyInjectionScope.md │ │ ├── InjectableServices.md │ │ ├── InjectingServices.md │ │ ├── Performables.md │ │ └── index.md │ ├── extendingScreenplay │ │ ├── AbilitiesActionsAndQuestions.md │ │ ├── EventHandlers.md │ │ ├── ReportFormtters.md │ │ ├── TestIntegrations.md │ │ └── index.md │ ├── nUnitTutorial │ │ ├── BestPractices.md │ │ └── index.md │ ├── performables │ │ ├── WebApis.md │ │ ├── index.md │ │ └── toc.yml │ ├── specFlowTutorial │ │ └── index.md │ ├── toc.yml │ └── writingPerformables │ │ ├── AllowCooperativeCancellation.md │ │ ├── AvoidBranchingLogic.md │ │ ├── DoNotUseDiFrameworks.md │ │ ├── ImplementICanReport.md │ │ ├── ImplementOnePerformableInterface.md │ │ ├── ParameterizeLowLevelPerformables.md │ │ ├── PureFunctionalTasks.md │ │ ├── StatefulButImmutable.md │ │ ├── TasksDoNotUseAbilities.md │ │ ├── WriteABuilder.md │ │ └── index.md ├── glossary │ ├── Ability.md │ ├── Action.md │ ├── Asset.md │ ├── Feature.md │ ├── Integration.md │ ├── Performable.md │ ├── Persona.md │ ├── Question.md │ ├── Report.md │ ├── Scenario.md │ ├── Spotlight.md │ ├── Task.md │ ├── index.md │ └── toc.yml ├── index.md └── toc.yml ├── CSF.Screenplay.JsonToHtmlReport.Template ├── CSF.Screenplay.JsonToHtmlReport.Template.proj ├── README.md └── src │ ├── .node-version │ ├── babel.config.js │ ├── css │ ├── content.css │ ├── layers.css │ ├── layout.css │ ├── reset.css │ ├── scenarioList.css │ ├── spinner.css │ └── summaryTable.css │ ├── index.js │ ├── jest.config.js │ ├── js │ ├── ReportLoader.js │ ├── ReportLoader.spec.js │ ├── ReportWriter │ │ ├── FeatureElementCreator.js │ │ ├── ReportWriter.js │ │ ├── ReportWriter.spec.js │ │ ├── ReportableElementCreator.js │ │ ├── ScenarioElementCreator.js │ │ ├── index.js │ │ └── setContentOrRemove.js │ ├── ScenarioAggregator.js │ ├── ScenarioAggregator.spec.js │ ├── SummaryDataGenerator.js │ ├── SummaryDataGenerator.spec.js │ ├── SummaryGenerator.js │ ├── SummaryGenerator.spec.js │ ├── activatePage.js │ ├── activatePage.spec.js │ ├── getElementById.js │ ├── updateReportTime.js │ └── updateReportTime.spec.js │ ├── package-lock.json │ ├── package.json │ ├── template.html │ └── webpack.config.js ├── CSF.Screenplay.JsonToHtmlReport ├── CSF.Screenplay.JsonToHtmlReport.csproj ├── IConvertsReportJsonToHtml.cs ├── IGetsHtmlTemplate.cs ├── Program.cs ├── ReportConverter.cs ├── ReportConverterApplication.cs ├── ReportConverterOptions.cs ├── ServiceRegistrations.cs └── TemplateReader.cs ├── CSF.Screenplay.NUnit ├── CSF.Screenplay.NUnit.csproj ├── ScreenplayAssemblyAttribute.cs ├── ScreenplayAttribute.cs └── ScreenplayLocator.cs ├── CSF.Screenplay.SpecFlow ├── CSF.Screenplay.SpecFlow.csproj ├── Properties │ └── RuntimePluginInfo.cs ├── ScenarioAndFeatureContextKey.cs ├── ScreenplayBinding.cs ├── ScreenplayPlugin.cs ├── ScreenplaySteps.cs ├── ServiceCollectionAdapter.cs └── ServiceProviderAdapter.cs ├── CSF.Screenplay.WebApis ├── CSF.Screenplay.WebApis.csproj ├── CommonHttpRequestLogic.cs ├── Endpoint.cs ├── Endpoint.withResult.cs ├── EndpointBase.cs ├── HttpRequestMessageBuilder.cs ├── HttpRequestMessageBuilder.generic.cs ├── HttpResponseMessageAndResponseType.cs ├── JsonEndpoint.cs ├── JsonEndpoint.withResult.cs ├── MakeWebApiRequests.cs ├── NameValueRecordCollection.cs ├── ParameterizedEndpoint.cs ├── ParameterizedEndpoint.withResult.cs ├── Resources │ ├── PerformableReportStrings.cs │ └── PerformableReportStrings.restext ├── SendTheHttpRequest.cs ├── SendTheHttpRequestAndGetJsonResponse.cs ├── SendTheHttpRequestAndGetTheResponse.cs └── WebApiBuilder.cs ├── CSF.Screenplay.sln ├── CSF.Screenplay ├── Actors │ ├── Cast.cs │ └── Stage.cs ├── CSF.Screenplay.csproj ├── IGetsScreenplay.cs ├── Performance.cs ├── Performances │ ├── PerformanceEventBus.cs │ └── PerformanceFactory.cs ├── ReportFragmentFormatter.cs ├── ReportModel │ ├── ActorCreatedReport.cs │ ├── ActorGainedAbilityReport.cs │ ├── ActorSpotlitReport.cs │ ├── IdentifierAndNameModel.cs │ ├── PerformableAsset.cs │ ├── PerformableReport.cs │ ├── PerformanceReport.cs │ ├── ReportMetadata.cs │ ├── ReportableModelBase.cs │ ├── ScreenplayReport.cs │ └── SpotlightTurnedOffReport.cs ├── Reporting │ ├── FormattableFormatter.cs │ ├── HumanizerFormatter.cs │ ├── IDeserializesReport.cs │ ├── ITestsPathForWritePermissions.cs │ ├── JsonScreenplayReportReader.cs │ ├── JsonScreenplayReporter.cs │ ├── NameFormatter.cs │ ├── NoOpReporter.cs │ ├── PerformanceReportBuilder.cs │ ├── ReportFormatCreator.cs │ ├── ScreenplayReportBuilder.cs │ ├── ToStringFormatter.cs │ ├── ValueFormatterProvider.cs │ ├── ValueFormatterRegistry.cs │ └── WritePermissionTester.cs ├── Resources │ ├── FormatterStrings.cs │ ├── FormatterStrings.restext │ ├── ReportStrings.cs │ └── ReportStrings.restext ├── ScopeAndPerformance.cs ├── Screenplay.cs ├── ScreenplayExtensions.cs ├── ScreenplayOptions.cs └── ScreenplayServiceCollectionExtensions.cs ├── LICENSE ├── README.md ├── Tests ├── CSF.Screenplay.NUnit.Tests │ ├── CSF.Screenplay.NUnit.Tests.csproj │ ├── GlobalUsings.cs │ ├── Properties │ │ └── ScreenplayAttributes.cs │ ├── ScreenplayFactory.cs │ ├── TestWithDescription.cs │ └── TestWithoutDescription.cs ├── CSF.Screenplay.SpecFlow.Tests │ ├── AddingUp.feature │ ├── AddingUp │ │ ├── AddNumbers.cs │ │ ├── AddTheNumber.cs │ │ ├── AddThreeNumbers.cs │ │ ├── AddingUpBuilder.cs │ │ ├── GetTheNumber.cs │ │ └── SetTheNumber.cs │ ├── CSF.Screenplay.SpecFlow.Tests.csproj │ ├── GlobalUsings.cs │ ├── Mathias.cs │ ├── ServiceCollectionAdapterTests.cs │ └── StepDefinitions │ │ └── AddingUpSteps.cs └── CSF.Screenplay.Tests │ ├── ActorExtensionsTests.cs │ ├── ActorTests.cs │ ├── Actors │ ├── CastTests.cs │ ├── NamedActorAttribute.cs │ ├── NamedActorCustomization.cs │ └── StageTests.cs │ ├── AutoMoqDataAttribute.cs │ ├── AutofixtureServicesAttribute.cs │ ├── AutofixtureServicesCustomization.cs │ ├── CSF.Screenplay.Tests.csproj │ ├── DefaultScreenplayAttribute.cs │ ├── DefaultScreenplayCustomization.cs │ ├── GlobalUsings.cs │ ├── Integration │ ├── EventBusIntegrationTests.cs │ └── PerformanceIntegrationTests.cs │ ├── JsonToHtmlReport │ └── TemplateReaderTests.cs │ ├── Performables │ ├── StopwatchTests.cs │ └── TimeSpanBuilderTests.cs │ ├── PerformanceTests.cs │ ├── ReportFragmentFormatterTests.cs │ ├── Reporting │ ├── FormattableFormatterTests.cs │ ├── HumanizerFormatterTests.cs │ ├── JsonScreenplayReportReaderTests.cs │ ├── JsonScreenplayReporterTests.cs │ ├── NameFormatterTests.cs │ ├── PerformanceReportBuilderTests.cs │ ├── ReportFormatCreatorTests.cs │ ├── ToStringFormatterTests.cs │ ├── ValueFormatterProviderTests.cs │ ├── ValueFormatterRegistryTests.cs │ ├── WithMemoryStreamAttribute.cs │ ├── WithMemoryStreamCustomization.cs │ └── WritePermissionTesterTests.cs │ ├── ScreenplayExtensionsTests.cs │ ├── ScreenplayTests.cs │ ├── Stubs │ ├── SampleAction.cs │ ├── SampleGenericQuestion.cs │ ├── SampleQuestion.cs │ └── ThrowingAction.cs │ └── WebApis │ ├── HttpRequestMessageBuilderTests.cs │ ├── MakeWebApiRequestsTests.cs │ ├── NameValueRecordCollectionTests.cs │ ├── SendTheHttpRequestAndGetJsonResponseTests.cs │ ├── SendTheHttpRequestAndGetTheResponseTests.cs │ ├── SendTheHttpRequestTests.cs │ ├── SendsMockHttpRequestsAttribute.cs │ └── WebApiBuilderTests.cs ├── Tools ├── appveyor-upload-test-results.ps1 ├── appveyor_publish_docs.ps1 └── run-tests-with-coverage.ps1 └── docs ├── .nojekyll ├── api ├── CSF.Screenplay.Abilities.UseAStopwatch.html ├── CSF.Screenplay.Abilities.html ├── CSF.Screenplay.Actor.html ├── CSF.Screenplay.ActorExtensions.html ├── CSF.Screenplay.Actors.ActorEventArgs.html ├── CSF.Screenplay.Actors.Cast.html ├── CSF.Screenplay.Actors.GainAbilityEventArgs.html ├── CSF.Screenplay.Actors.ICanPerformGiven.html ├── CSF.Screenplay.Actors.ICanPerformThen.html ├── CSF.Screenplay.Actors.ICanPerformWhen.html ├── CSF.Screenplay.Actors.IHasPerformableEvents.html ├── CSF.Screenplay.Actors.PerformableAssetEventArgs.html ├── CSF.Screenplay.Actors.PerformableEventArgs.html ├── CSF.Screenplay.Actors.PerformableFailureEventArgs.html ├── CSF.Screenplay.Actors.PerformableResultEventArgs.html ├── CSF.Screenplay.Actors.PerformancePhase.html ├── CSF.Screenplay.Actors.Stage.html ├── CSF.Screenplay.Actors.html ├── CSF.Screenplay.CastExtensions.html ├── CSF.Screenplay.ICanPerform.html ├── CSF.Screenplay.ICanReport.html ├── CSF.Screenplay.ICast.html ├── CSF.Screenplay.IFormatsReportFragment.html ├── CSF.Screenplay.IGetsScreenplay.html ├── CSF.Screenplay.IHasAbilities.html ├── CSF.Screenplay.IHasName.html ├── CSF.Screenplay.IHasPerformanceIdentity.html ├── CSF.Screenplay.IHasServiceProvider.html ├── CSF.Screenplay.IHostsPerformance.html ├── CSF.Screenplay.IPerformable.html ├── CSF.Screenplay.IPerformableWithResult-1.html ├── CSF.Screenplay.IPerformableWithResult.html ├── CSF.Screenplay.IPerformance.html ├── CSF.Screenplay.IPersona.html ├── CSF.Screenplay.IStage.html ├── CSF.Screenplay.JsonToHtmlReport.IConvertsReportJsonToHtml.html ├── CSF.Screenplay.JsonToHtmlReport.IGetsHtmlTemplate.html ├── CSF.Screenplay.JsonToHtmlReport.Program.html ├── CSF.Screenplay.JsonToHtmlReport.ReportConverter.html ├── CSF.Screenplay.JsonToHtmlReport.ReportConverterApplication.html ├── CSF.Screenplay.JsonToHtmlReport.ReportConverterOptions.html ├── CSF.Screenplay.JsonToHtmlReport.ServiceRegistrations.html ├── CSF.Screenplay.JsonToHtmlReport.TemplateReader.html ├── CSF.Screenplay.JsonToHtmlReport.html ├── CSF.Screenplay.Performables.IGetsPerformable.html ├── CSF.Screenplay.Performables.IGetsPerformableWithResult-1.html ├── CSF.Screenplay.Performables.IGetsPerformableWithResult.html ├── CSF.Screenplay.Performables.IProvidesTimeSpan.html ├── CSF.Screenplay.Performables.PerformableException.html ├── CSF.Screenplay.Performables.ReadTheStopwatch.html ├── CSF.Screenplay.Performables.ResetTheStopwatch.html ├── CSF.Screenplay.Performables.StartTheStopwatch.html ├── CSF.Screenplay.Performables.StopTheStopwatch.html ├── CSF.Screenplay.Performables.StopwatchBuilder.html ├── CSF.Screenplay.Performables.TimeSpanBuilder-1.html ├── CSF.Screenplay.Performables.TimeSpanBuilder.html ├── CSF.Screenplay.Performables.html ├── CSF.Screenplay.Performance.html ├── CSF.Screenplay.PerformanceStarter.html ├── CSF.Screenplay.Performances.IBeginsAndEndsPerformance.html ├── CSF.Screenplay.Performances.ICreatesPerformance.html ├── CSF.Screenplay.Performances.IHasPerformanceEvents.html ├── CSF.Screenplay.Performances.IRelaysPerformanceEvents.html ├── CSF.Screenplay.Performances.IdentifierAndName.html ├── CSF.Screenplay.Performances.PerformanceEventArgs.html ├── CSF.Screenplay.Performances.PerformanceEventBus.html ├── CSF.Screenplay.Performances.PerformanceFactory.html ├── CSF.Screenplay.Performances.PerformanceFinishedEventArgs.html ├── CSF.Screenplay.Performances.PerformanceScopeEventArgs.html ├── CSF.Screenplay.Performances.PerformanceState.html ├── CSF.Screenplay.Performances.html ├── CSF.Screenplay.ReportFragment.html ├── CSF.Screenplay.ReportFragmentFormatter.html ├── CSF.Screenplay.ReportModel.ActorCreatedReport.html ├── CSF.Screenplay.ReportModel.ActorGainedAbilityReport.html ├── CSF.Screenplay.ReportModel.ActorSpotlitReport.html ├── CSF.Screenplay.ReportModel.IdentifierAndNameModel.html ├── CSF.Screenplay.ReportModel.PerformableAsset.html ├── CSF.Screenplay.ReportModel.PerformableReport.html ├── CSF.Screenplay.ReportModel.PerformanceReport.html ├── CSF.Screenplay.ReportModel.ReportMetadata.html ├── CSF.Screenplay.ReportModel.ReportableModelBase.html ├── CSF.Screenplay.ReportModel.ScreenplayReport.html ├── CSF.Screenplay.ReportModel.SpotlightTurnedOffReport.html ├── CSF.Screenplay.ReportModel.html ├── CSF.Screenplay.Reporting.FormattableFormatter.html ├── CSF.Screenplay.Reporting.HumanizerFormatter.html ├── CSF.Screenplay.Reporting.IDeserializesReport.html ├── CSF.Screenplay.Reporting.IFormattableValue.html ├── CSF.Screenplay.Reporting.IFormatterRegistry.html ├── CSF.Screenplay.Reporting.IGetsReportFormat.html ├── CSF.Screenplay.Reporting.IGetsValueFormatter.html ├── CSF.Screenplay.Reporting.IReporter.html ├── CSF.Screenplay.Reporting.ITestsPathForWritePermissions.html ├── CSF.Screenplay.Reporting.IValueFormatter.html ├── CSF.Screenplay.Reporting.JsonScreenplayReportReader.html ├── CSF.Screenplay.Reporting.JsonScreenplayReporter.html ├── CSF.Screenplay.Reporting.NameAndValue.html ├── CSF.Screenplay.Reporting.NameFormatter.html ├── CSF.Screenplay.Reporting.NoOpReporter.html ├── CSF.Screenplay.Reporting.PerformanceReportBuilder.html ├── CSF.Screenplay.Reporting.ReportFormat.html ├── CSF.Screenplay.Reporting.ReportFormatCreator.html ├── CSF.Screenplay.Reporting.ScreenplayReportBuilder.html ├── CSF.Screenplay.Reporting.ToStringFormatter.html ├── CSF.Screenplay.Reporting.ValueFormatterExtensions.html ├── CSF.Screenplay.Reporting.ValueFormatterProvider.html ├── CSF.Screenplay.Reporting.ValueFormatterRegistry.html ├── CSF.Screenplay.Reporting.WritePermissionTester.html ├── CSF.Screenplay.Reporting.html ├── CSF.Screenplay.ScopeAndPerformance.html ├── CSF.Screenplay.Screenplay.html ├── CSF.Screenplay.ScreenplayAssemblyAttribute.html ├── CSF.Screenplay.ScreenplayAttribute.html ├── CSF.Screenplay.ScreenplayBinding.html ├── CSF.Screenplay.ScreenplayExtensions.html ├── CSF.Screenplay.ScreenplayLocator.html ├── CSF.Screenplay.ScreenplayOptions.html ├── CSF.Screenplay.ScreenplayPlugin.html ├── CSF.Screenplay.ScreenplayServiceCollectionExtensions.html ├── CSF.Screenplay.ScreenplaySteps.html ├── CSF.Screenplay.ServiceCollectionAdapter.html ├── CSF.Screenplay.ServiceProviderAdapter.html ├── CSF.Screenplay.StageExtensions.html ├── CSF.Screenplay.WebApis.Endpoint-1.html ├── CSF.Screenplay.WebApis.Endpoint.html ├── CSF.Screenplay.WebApis.EndpointBase.html ├── CSF.Screenplay.WebApis.HttpRequestMessageBuilder-1.html ├── CSF.Screenplay.WebApis.HttpRequestMessageBuilder.html ├── CSF.Screenplay.WebApis.HttpResponseMessageAndResponseType-1.html ├── CSF.Screenplay.WebApis.JsonEndpoint-1.html ├── CSF.Screenplay.WebApis.JsonEndpoint-2.html ├── CSF.Screenplay.WebApis.MakeWebApiRequests.html ├── CSF.Screenplay.WebApis.NameValueRecordCollection-2.html ├── CSF.Screenplay.WebApis.ParameterizedEndpoint-1.html ├── CSF.Screenplay.WebApis.ParameterizedEndpoint-2.html ├── CSF.Screenplay.WebApis.SendTheHttpRequest.html ├── CSF.Screenplay.WebApis.SendTheHttpRequestAndGetJsonResponse-1.html ├── CSF.Screenplay.WebApis.SendTheHttpRequestAndGetTheResponse-1.html ├── CSF.Screenplay.WebApis.WebApiBuilder.html ├── CSF.Screenplay.WebApis.html ├── CSF.Screenplay.html ├── toc.html └── toc.json ├── docs ├── GettingReports.html ├── HowScreenplayAndPerformanceRelate.html ├── MakeupOfAScreenplay.html ├── ScreenplayInTheTestingStack.html ├── StandaloneScreenplay.html ├── SuitabilityAsATestingTool.html ├── WritingTests.html ├── builderPattern │ ├── ConsumingBuilders.html │ ├── WritingBuilders.html │ ├── index.html │ ├── toc.html │ └── toc.json ├── dependencyInjection │ ├── AddingServices.html │ ├── DependencyInjectionScope.html │ ├── InjectableServices.html │ ├── InjectingServices.html │ ├── Performables.html │ └── index.html ├── extendingScreenplay │ ├── AbilitiesActionsAndQuestions.html │ ├── EventHandlers.html │ ├── ReportFormtters.html │ ├── TestIntegrations.html │ └── index.html ├── nUnitTutorial │ ├── BestPractices.html │ └── index.html ├── performables │ ├── WebApis.html │ ├── index.html │ ├── toc.html │ └── toc.json ├── specFlowTutorial │ └── index.html ├── toc.html ├── toc.json └── writingPerformables │ ├── AllowCooperativeCancellation.html │ ├── AvoidBranchingLogic.html │ ├── DoNotUseDiFrameworks.html │ ├── ImplementICanReport.html │ ├── ImplementOnePerformableInterface.html │ ├── ParameterizeLowLevelPerformables.html │ ├── PureFunctionalTasks.html │ ├── StatefulButImmutable.html │ ├── TasksDoNotUseAbilities.html │ ├── WriteABuilder.html │ └── index.html ├── favicon.ico ├── glossary ├── Ability.html ├── Action.html ├── Asset.html ├── Feature.html ├── Integration.html ├── Performable.html ├── Persona.html ├── Question.html ├── Report.html ├── Scenario.html ├── Spotlight.html ├── Task.html ├── index.html ├── toc.html └── toc.json ├── index.html ├── index.json ├── logo.svg ├── manifest.json ├── public ├── architecture-I3QFYML2-NK53GYGD.min.js ├── architecture-I3QFYML2-NK53GYGD.min.js.map ├── architectureDiagram-AYX4OTIS-UEH2Z7UQ.min.js ├── architectureDiagram-AYX4OTIS-UEH2Z7UQ.min.js.map ├── blockDiagram-XN6IQ5JY-VK3M7PUD.min.js ├── blockDiagram-XN6IQ5JY-VK3M7PUD.min.js.map ├── bootstrap-icons-OCU552PF.woff ├── bootstrap-icons-X6UQXWUS.woff2 ├── c4Diagram-GPMAACGM-P3DMZBSW.min.js ├── c4Diagram-GPMAACGM-P3DMZBSW.min.js.map ├── chunk-24EG6CQZ.min.js ├── chunk-24EG6CQZ.min.js.map ├── chunk-2TAJJIOM.min.js ├── chunk-2TAJJIOM.min.js.map ├── chunk-2YMHYP32.min.js ├── chunk-2YMHYP32.min.js.map ├── chunk-3Z74ZUXG.min.js ├── chunk-3Z74ZUXG.min.js.map ├── chunk-45RMNOPF.min.js ├── chunk-45RMNOPF.min.js.map ├── chunk-53EALYMI.min.js ├── chunk-53EALYMI.min.js.map ├── chunk-5KKNARB2.min.js ├── chunk-5KKNARB2.min.js.map ├── chunk-7JZIB2XU.min.js ├── chunk-7JZIB2XU.min.js.map ├── chunk-B5WF4DA4.min.js ├── chunk-B5WF4DA4.min.js.map ├── chunk-CIWIECNU.min.js ├── chunk-CIWIECNU.min.js.map ├── chunk-CM5D5KZN.min.js ├── chunk-CM5D5KZN.min.js.map ├── chunk-CXRPJJJE.min.js ├── chunk-CXRPJJJE.min.js.map ├── chunk-DBPRPEV6.min.js ├── chunk-DBPRPEV6.min.js.map ├── chunk-DFMVIMQJ.min.js ├── chunk-DFMVIMQJ.min.js.map ├── chunk-DTUU2GN4.min.js ├── chunk-DTUU2GN4.min.js.map ├── chunk-DXUQFVLL.min.js ├── chunk-DXUQFVLL.min.js.map ├── chunk-HOCACIQT.min.js ├── chunk-HOCACIQT.min.js.map ├── chunk-IQQ46AC6.min.js ├── chunk-IQQ46AC6.min.js.map ├── chunk-K7PO6CNQ.min.js ├── chunk-K7PO6CNQ.min.js.map ├── chunk-KF4CENUX.min.js ├── chunk-KF4CENUX.min.js.map ├── chunk-LDPOAEOH.min.js ├── chunk-LDPOAEOH.min.js.map ├── chunk-MJXJ7UGT.min.js ├── chunk-MJXJ7UGT.min.js.map ├── chunk-NRRWWJ3P.min.js ├── chunk-NRRWWJ3P.min.js.map ├── chunk-OSRY5VT3.min.js ├── chunk-OSRY5VT3.min.js.map ├── chunk-P2C2SEUI.min.js ├── chunk-P2C2SEUI.min.js.map ├── chunk-PYBRKFQJ.min.js ├── chunk-PYBRKFQJ.min.js.map ├── chunk-R7DHUQMU.min.js ├── chunk-R7DHUQMU.min.js.map ├── chunk-TERFBH2B.min.js ├── chunk-TERFBH2B.min.js.map ├── chunk-TOQ6ACLX.min.js ├── chunk-TOQ6ACLX.min.js.map ├── chunk-U4DUTLYF.min.js ├── chunk-U4DUTLYF.min.js.map ├── chunk-UOD6J27N.min.js ├── chunk-UOD6J27N.min.js.map ├── chunk-WMZJ2DJX.min.js ├── chunk-WMZJ2DJX.min.js.map ├── chunk-XBNRW4G3.min.js ├── chunk-XBNRW4G3.min.js.map ├── chunk-ZU5APUIQ.min.js ├── chunk-ZU5APUIQ.min.js.map ├── classDiagram-FEGYTUDG-YCLVHNZU.min.js ├── classDiagram-FEGYTUDG-YCLVHNZU.min.js.map ├── classDiagram-v2-R65JCUOM-VFGJ2XXK.min.js ├── classDiagram-v2-R65JCUOM-VFGJ2XXK.min.js.map ├── dagre-SWNTG5WE-7BA3SWK2.min.js ├── dagre-SWNTG5WE-7BA3SWK2.min.js.map ├── diagram-NZMEDLQF-NYTRB6HN.min.js ├── diagram-NZMEDLQF-NYTRB6HN.min.js.map ├── docfx.min.css ├── docfx.min.css.map ├── docfx.min.js ├── docfx.min.js.map ├── erDiagram-WO52GFNT-Y4NFVIDE.min.js ├── erDiagram-WO52GFNT-Y4NFVIDE.min.js.map ├── es-4I4X6RME.min.js ├── es-4I4X6RME.min.js.map ├── flowDiagram-TSWR6T2D-H32UQL2W.min.js ├── flowDiagram-TSWR6T2D-H32UQL2W.min.js.map ├── ganttDiagram-FAOCOTIY-GFLLTKXL.min.js ├── ganttDiagram-FAOCOTIY-GFLLTKXL.min.js.map ├── gitGraph-YCYPL57B-C4NBXIBD.min.js ├── gitGraph-YCYPL57B-C4NBXIBD.min.js.map ├── gitGraphDiagram-5C7YHVU6-2F4DKEGL.min.js ├── gitGraphDiagram-5C7YHVU6-2F4DKEGL.min.js.map ├── info-46DW6VJ7-MWRO75OW.min.js ├── info-46DW6VJ7-MWRO75OW.min.js.map ├── infoDiagram-P5D6MX3V-EFUDKNDH.min.js ├── infoDiagram-P5D6MX3V-EFUDKNDH.min.js.map ├── journeyDiagram-UIGPPNLY-FB6FUBJH.min.js ├── journeyDiagram-UIGPPNLY-FB6FUBJH.min.js.map ├── kanban-definition-KMT3NSR2-K4PM5M4E.min.js ├── kanban-definition-KMT3NSR2-K4PM5M4E.min.js.map ├── katex-NVDEX37K.min.js ├── katex-NVDEX37K.min.js.map ├── lunr.ar-A6ZT2INA.min.js ├── lunr.ar-A6ZT2INA.min.js.map ├── lunr.da-WWM276CR.min.js ├── lunr.da-WWM276CR.min.js.map ├── lunr.de-XXPRKDAY.min.js ├── lunr.de-XXPRKDAY.min.js.map ├── lunr.du-NO4L2LL3.min.js ├── lunr.du-NO4L2LL3.min.js.map ├── lunr.el-5ZSSJVMA.min.js ├── lunr.el-5ZSSJVMA.min.js.map ├── lunr.es-ZH6Q76E6.min.js ├── lunr.es-ZH6Q76E6.min.js.map ├── lunr.fi-S7WJSBCP.min.js ├── lunr.fi-S7WJSBCP.min.js.map ├── lunr.fr-H2QNBELV.min.js ├── lunr.fr-H2QNBELV.min.js.map ├── lunr.he-TTLAK4MN.min.js ├── lunr.he-TTLAK4MN.min.js.map ├── lunr.hi-PWWMAGLU.min.js ├── lunr.hi-PWWMAGLU.min.js.map ├── lunr.hu-DLG2DSVM.min.js ├── lunr.hu-DLG2DSVM.min.js.map ├── lunr.hy-FFQJAR7M.min.js ├── lunr.hy-FFQJAR7M.min.js.map ├── lunr.it-VQNLJLPR.min.js ├── lunr.it-VQNLJLPR.min.js.map ├── lunr.ja-J6QHZSR2.min.js ├── lunr.ja-J6QHZSR2.min.js.map ├── lunr.jp-M45D3XJE.min.js ├── lunr.jp-M45D3XJE.min.js.map ├── lunr.kn-ASLXFRTC.min.js ├── lunr.kn-ASLXFRTC.min.js.map ├── lunr.ko-RHF2BDE4.min.js ├── lunr.ko-RHF2BDE4.min.js.map ├── lunr.nl-2BITG354.min.js ├── lunr.nl-2BITG354.min.js.map ├── lunr.no-WPLSHWFO.min.js ├── lunr.no-WPLSHWFO.min.js.map ├── lunr.pt-V2XEBELC.min.js ├── lunr.pt-V2XEBELC.min.js.map ├── lunr.ro-O76266FJ.min.js ├── lunr.ro-O76266FJ.min.js.map ├── lunr.ru-G56UDXYH.min.js ├── lunr.ru-G56UDXYH.min.js.map ├── lunr.sa-LD5PRAIS.min.js ├── lunr.sa-LD5PRAIS.min.js.map ├── lunr.sv-7VRY4UDB.min.js ├── lunr.sv-7VRY4UDB.min.js.map ├── lunr.ta-OWB7AURB.min.js ├── lunr.ta-OWB7AURB.min.js.map ├── lunr.te-JGGL3BFP.min.js ├── lunr.te-JGGL3BFP.min.js.map ├── lunr.th-O4JBL3IY.min.js ├── lunr.th-O4JBL3IY.min.js.map ├── lunr.tr-WXUV733C.min.js ├── lunr.tr-WXUV733C.min.js.map ├── lunr.vi-3U4A337N.min.js ├── lunr.vi-3U4A337N.min.js.map ├── main.css ├── main.js ├── mermaid.core-RYVCAQML.min.js ├── mermaid.core-RYVCAQML.min.js.map ├── mindmap-definition-R7LC4OIY-2USVTKSJ.min.js ├── mindmap-definition-R7LC4OIY-2USVTKSJ.min.js.map ├── packet-W2GHVCYJ-73RTG6VT.min.js ├── packet-W2GHVCYJ-73RTG6VT.min.js.map ├── pie-BEWT4RHE-6E5EOTAQ.min.js ├── pie-BEWT4RHE-6E5EOTAQ.min.js.map ├── pieDiagram-BLWKPB35-RRRLPZVM.min.js ├── pieDiagram-BLWKPB35-RRRLPZVM.min.js.map ├── quadrantDiagram-QXWEEFXS-PKSQMH6W.min.js ├── quadrantDiagram-QXWEEFXS-PKSQMH6W.min.js.map ├── requirementDiagram-XAUNFCZY-5ZWIDLT6.min.js ├── requirementDiagram-XAUNFCZY-5ZWIDLT6.min.js.map ├── sankeyDiagram-LVV36NHA-T6DVYUKQ.min.js ├── sankeyDiagram-LVV36NHA-T6DVYUKQ.min.js.map ├── search-worker.min.js ├── search-worker.min.js.map ├── sequenceDiagram-D25TJ2OB-6R64PNA2.min.js ├── sequenceDiagram-D25TJ2OB-6R64PNA2.min.js.map ├── stateDiagram-GNSP7T6Y-QRHXVCK2.min.js ├── stateDiagram-GNSP7T6Y-QRHXVCK2.min.js.map ├── stateDiagram-v2-HP6YRVRG-XMVPP43U.min.js ├── stateDiagram-v2-HP6YRVRG-XMVPP43U.min.js.map ├── tex-svg-full-SL33OL2J.min.js ├── tex-svg-full-SL33OL2J.min.js.map ├── timeline-definition-27KQCCZ3-MKUJTCR4.min.js ├── timeline-definition-27KQCCZ3-MKUJTCR4.min.js.map ├── xychartDiagram-MYLB5AYS-IFQ4BEB4.min.js └── xychartDiagram-MYLB5AYS-IFQ4BEB4.min.js.map ├── toc.html ├── toc.json └── xrefmap.yml /.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/.appveyor.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/.gitignore -------------------------------------------------------------------------------- /.sonarqube-analysisproperties.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/.sonarqube-analysisproperties.xml -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CSF.Screenplay.Abstractions/Abilities/UseAStopwatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Abstractions/Abilities/UseAStopwatch.cs -------------------------------------------------------------------------------- /CSF.Screenplay.Abstractions/Actor.abilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Abstractions/Actor.abilities.cs -------------------------------------------------------------------------------- /CSF.Screenplay.Abstractions/Actor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Abstractions/Actor.cs -------------------------------------------------------------------------------- /CSF.Screenplay.Abstractions/Actor.disposable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Abstractions/Actor.disposable.cs -------------------------------------------------------------------------------- /CSF.Screenplay.Abstractions/Actor.events.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Abstractions/Actor.events.cs -------------------------------------------------------------------------------- /CSF.Screenplay.Abstractions/Actor.performer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Abstractions/Actor.performer.cs -------------------------------------------------------------------------------- /CSF.Screenplay.Abstractions/Actor.phases.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Abstractions/Actor.phases.cs -------------------------------------------------------------------------------- /CSF.Screenplay.Abstractions/ActorExtensions.abilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Abstractions/ActorExtensions.abilities.cs -------------------------------------------------------------------------------- /CSF.Screenplay.Abstractions/ActorExtensions.performableBuilders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Abstractions/ActorExtensions.performableBuilders.cs -------------------------------------------------------------------------------- /CSF.Screenplay.Abstractions/Actors/ActorEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Abstractions/Actors/ActorEventArgs.cs -------------------------------------------------------------------------------- /CSF.Screenplay.Abstractions/Actors/GainAbilityEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Abstractions/Actors/GainAbilityEventArgs.cs -------------------------------------------------------------------------------- /CSF.Screenplay.Abstractions/Actors/ICanPerformGiven.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Abstractions/Actors/ICanPerformGiven.cs -------------------------------------------------------------------------------- /CSF.Screenplay.Abstractions/Actors/ICanPerformThen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Abstractions/Actors/ICanPerformThen.cs -------------------------------------------------------------------------------- /CSF.Screenplay.Abstractions/Actors/ICanPerformWhen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Abstractions/Actors/ICanPerformWhen.cs -------------------------------------------------------------------------------- /CSF.Screenplay.Abstractions/Actors/IHasPerformableEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Abstractions/Actors/IHasPerformableEvents.cs -------------------------------------------------------------------------------- /CSF.Screenplay.Abstractions/Actors/PerformableAssetEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Abstractions/Actors/PerformableAssetEventArgs.cs -------------------------------------------------------------------------------- /CSF.Screenplay.Abstractions/Actors/PerformableEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Abstractions/Actors/PerformableEventArgs.cs -------------------------------------------------------------------------------- /CSF.Screenplay.Abstractions/Actors/PerformableFailureEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Abstractions/Actors/PerformableFailureEventArgs.cs -------------------------------------------------------------------------------- /CSF.Screenplay.Abstractions/Actors/PerformableResultEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Abstractions/Actors/PerformableResultEventArgs.cs -------------------------------------------------------------------------------- /CSF.Screenplay.Abstractions/Actors/PerformancePhase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Abstractions/Actors/PerformancePhase.cs -------------------------------------------------------------------------------- /CSF.Screenplay.Abstractions/CSF.Screenplay.Abstractions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Abstractions/CSF.Screenplay.Abstractions.csproj -------------------------------------------------------------------------------- /CSF.Screenplay.Abstractions/CastExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Abstractions/CastExtensions.cs -------------------------------------------------------------------------------- /CSF.Screenplay.Abstractions/ICanPerform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Abstractions/ICanPerform.cs -------------------------------------------------------------------------------- /CSF.Screenplay.Abstractions/ICanReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Abstractions/ICanReport.cs -------------------------------------------------------------------------------- /CSF.Screenplay.Abstractions/ICast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Abstractions/ICast.cs -------------------------------------------------------------------------------- /CSF.Screenplay.Abstractions/IFormatsReportFragment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Abstractions/IFormatsReportFragment.cs -------------------------------------------------------------------------------- /CSF.Screenplay.Abstractions/IHasAbilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Abstractions/IHasAbilities.cs -------------------------------------------------------------------------------- /CSF.Screenplay.Abstractions/IHasName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Abstractions/IHasName.cs -------------------------------------------------------------------------------- /CSF.Screenplay.Abstractions/IHasPerformanceIdentity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Abstractions/IHasPerformanceIdentity.cs -------------------------------------------------------------------------------- /CSF.Screenplay.Abstractions/IHasServiceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Abstractions/IHasServiceProvider.cs -------------------------------------------------------------------------------- /CSF.Screenplay.Abstractions/IHostsPerformance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Abstractions/IHostsPerformance.cs -------------------------------------------------------------------------------- /CSF.Screenplay.Abstractions/IPerformable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Abstractions/IPerformable.cs -------------------------------------------------------------------------------- /CSF.Screenplay.Abstractions/IPerformableWithResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Abstractions/IPerformableWithResult.cs -------------------------------------------------------------------------------- /CSF.Screenplay.Abstractions/IPerformableWithResult.generic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Abstractions/IPerformableWithResult.generic.cs -------------------------------------------------------------------------------- /CSF.Screenplay.Abstractions/IPerformance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Abstractions/IPerformance.cs -------------------------------------------------------------------------------- /CSF.Screenplay.Abstractions/IPersona.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Abstractions/IPersona.cs -------------------------------------------------------------------------------- /CSF.Screenplay.Abstractions/IStage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Abstractions/IStage.cs -------------------------------------------------------------------------------- /CSF.Screenplay.Abstractions/Performables/IGetsPerformable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Abstractions/Performables/IGetsPerformable.cs -------------------------------------------------------------------------------- /CSF.Screenplay.Abstractions/Performables/IGetsPerformableWithResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Abstractions/Performables/IGetsPerformableWithResult.cs -------------------------------------------------------------------------------- /CSF.Screenplay.Abstractions/Performables/IGetsPerformableWithResult.generic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Abstractions/Performables/IGetsPerformableWithResult.generic.cs -------------------------------------------------------------------------------- /CSF.Screenplay.Abstractions/Performables/IProvidesTimeSpan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Abstractions/Performables/IProvidesTimeSpan.cs -------------------------------------------------------------------------------- /CSF.Screenplay.Abstractions/Performables/PerformableException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Abstractions/Performables/PerformableException.cs -------------------------------------------------------------------------------- /CSF.Screenplay.Abstractions/Performables/ReadTheStopwatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Abstractions/Performables/ReadTheStopwatch.cs -------------------------------------------------------------------------------- /CSF.Screenplay.Abstractions/Performables/ResetTheStopwatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Abstractions/Performables/ResetTheStopwatch.cs -------------------------------------------------------------------------------- /CSF.Screenplay.Abstractions/Performables/StartTheStopwatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Abstractions/Performables/StartTheStopwatch.cs -------------------------------------------------------------------------------- /CSF.Screenplay.Abstractions/Performables/StopTheStopwatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Abstractions/Performables/StopTheStopwatch.cs -------------------------------------------------------------------------------- /CSF.Screenplay.Abstractions/Performables/StopwatchBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Abstractions/Performables/StopwatchBuilder.cs -------------------------------------------------------------------------------- /CSF.Screenplay.Abstractions/Performables/TimeSpanBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Abstractions/Performables/TimeSpanBuilder.cs -------------------------------------------------------------------------------- /CSF.Screenplay.Abstractions/Performables/TimeSpanBuilder.generic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Abstractions/Performables/TimeSpanBuilder.generic.cs -------------------------------------------------------------------------------- /CSF.Screenplay.Abstractions/PerformanceStarter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Abstractions/PerformanceStarter.cs -------------------------------------------------------------------------------- /CSF.Screenplay.Abstractions/Performances/IBeginsAndEndsPerformance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Abstractions/Performances/IBeginsAndEndsPerformance.cs -------------------------------------------------------------------------------- /CSF.Screenplay.Abstractions/Performances/ICreatesPerformance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Abstractions/Performances/ICreatesPerformance.cs -------------------------------------------------------------------------------- /CSF.Screenplay.Abstractions/Performances/IHasPerformanceEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Abstractions/Performances/IHasPerformanceEvents.cs -------------------------------------------------------------------------------- /CSF.Screenplay.Abstractions/Performances/IRelaysPerformanceEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Abstractions/Performances/IRelaysPerformanceEvents.cs -------------------------------------------------------------------------------- /CSF.Screenplay.Abstractions/Performances/IdentifierAndName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Abstractions/Performances/IdentifierAndName.cs -------------------------------------------------------------------------------- /CSF.Screenplay.Abstractions/Performances/PerformanceCompleteEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Abstractions/Performances/PerformanceCompleteEventArgs.cs -------------------------------------------------------------------------------- /CSF.Screenplay.Abstractions/Performances/PerformanceEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Abstractions/Performances/PerformanceEventArgs.cs -------------------------------------------------------------------------------- /CSF.Screenplay.Abstractions/Performances/PerformanceScopeEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Abstractions/Performances/PerformanceScopeEventArgs.cs -------------------------------------------------------------------------------- /CSF.Screenplay.Abstractions/Performances/PerformanceState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Abstractions/Performances/PerformanceState.cs -------------------------------------------------------------------------------- /CSF.Screenplay.Abstractions/ReportFragment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Abstractions/ReportFragment.cs -------------------------------------------------------------------------------- /CSF.Screenplay.Abstractions/Reporting/IFormattableValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Abstractions/Reporting/IFormattableValue.cs -------------------------------------------------------------------------------- /CSF.Screenplay.Abstractions/Reporting/IFormatterRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Abstractions/Reporting/IFormatterRegistry.cs -------------------------------------------------------------------------------- /CSF.Screenplay.Abstractions/Reporting/IGetsReportFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Abstractions/Reporting/IGetsReportFormat.cs -------------------------------------------------------------------------------- /CSF.Screenplay.Abstractions/Reporting/IGetsValueFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Abstractions/Reporting/IGetsValueFormatter.cs -------------------------------------------------------------------------------- /CSF.Screenplay.Abstractions/Reporting/IReporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Abstractions/Reporting/IReporter.cs -------------------------------------------------------------------------------- /CSF.Screenplay.Abstractions/Reporting/IValueFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Abstractions/Reporting/IValueFormatter.cs -------------------------------------------------------------------------------- /CSF.Screenplay.Abstractions/Reporting/NameAndValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Abstractions/Reporting/NameAndValue.cs -------------------------------------------------------------------------------- /CSF.Screenplay.Abstractions/Reporting/ReportFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Abstractions/Reporting/ReportFormat.cs -------------------------------------------------------------------------------- /CSF.Screenplay.Abstractions/Reporting/ValueFormatterExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Abstractions/Reporting/ValueFormatterExtensions.cs -------------------------------------------------------------------------------- /CSF.Screenplay.Abstractions/Resources/AbilityReportStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Abstractions/Resources/AbilityReportStrings.cs -------------------------------------------------------------------------------- /CSF.Screenplay.Abstractions/Resources/AbilityReportStrings.restext: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Abstractions/Resources/AbilityReportStrings.restext -------------------------------------------------------------------------------- /CSF.Screenplay.Abstractions/Resources/PerformableReportStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Abstractions/Resources/PerformableReportStrings.cs -------------------------------------------------------------------------------- /CSF.Screenplay.Abstractions/Resources/PerformableReportStrings.restext: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Abstractions/Resources/PerformableReportStrings.restext -------------------------------------------------------------------------------- /CSF.Screenplay.Abstractions/StageExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Abstractions/StageExtensions.cs -------------------------------------------------------------------------------- /CSF.Screenplay.Docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CSF.Screenplay.Docs/CSF.Screenplay.Docs.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Docs/CSF.Screenplay.Docs.proj -------------------------------------------------------------------------------- /CSF.Screenplay.Docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Docs/README.md -------------------------------------------------------------------------------- /CSF.Screenplay.Docs/docfx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Docs/docfx.json -------------------------------------------------------------------------------- /CSF.Screenplay.Docs/docs/GettingReports.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Docs/docs/GettingReports.md -------------------------------------------------------------------------------- /CSF.Screenplay.Docs/docs/HowScreenplayAndPerformanceRelate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Docs/docs/HowScreenplayAndPerformanceRelate.md -------------------------------------------------------------------------------- /CSF.Screenplay.Docs/docs/MakeupOfAScreenplay.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Docs/docs/MakeupOfAScreenplay.md -------------------------------------------------------------------------------- /CSF.Screenplay.Docs/docs/ScreenplayInTheTestingStack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Docs/docs/ScreenplayInTheTestingStack.md -------------------------------------------------------------------------------- /CSF.Screenplay.Docs/docs/StandaloneScreenplay.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Docs/docs/StandaloneScreenplay.md -------------------------------------------------------------------------------- /CSF.Screenplay.Docs/docs/SuitabilityAsATestingTool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Docs/docs/SuitabilityAsATestingTool.md -------------------------------------------------------------------------------- /CSF.Screenplay.Docs/docs/WritingTests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Docs/docs/WritingTests.md -------------------------------------------------------------------------------- /CSF.Screenplay.Docs/docs/builderPattern/ConsumingBuilders.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Docs/docs/builderPattern/ConsumingBuilders.md -------------------------------------------------------------------------------- /CSF.Screenplay.Docs/docs/builderPattern/WritingBuilders.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Docs/docs/builderPattern/WritingBuilders.md -------------------------------------------------------------------------------- /CSF.Screenplay.Docs/docs/builderPattern/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Docs/docs/builderPattern/index.md -------------------------------------------------------------------------------- /CSF.Screenplay.Docs/docs/builderPattern/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Docs/docs/builderPattern/toc.yml -------------------------------------------------------------------------------- /CSF.Screenplay.Docs/docs/dependencyInjection/AddingServices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Docs/docs/dependencyInjection/AddingServices.md -------------------------------------------------------------------------------- /CSF.Screenplay.Docs/docs/dependencyInjection/DependencyInjectionScope.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Docs/docs/dependencyInjection/DependencyInjectionScope.md -------------------------------------------------------------------------------- /CSF.Screenplay.Docs/docs/dependencyInjection/InjectableServices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Docs/docs/dependencyInjection/InjectableServices.md -------------------------------------------------------------------------------- /CSF.Screenplay.Docs/docs/dependencyInjection/InjectingServices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Docs/docs/dependencyInjection/InjectingServices.md -------------------------------------------------------------------------------- /CSF.Screenplay.Docs/docs/dependencyInjection/Performables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Docs/docs/dependencyInjection/Performables.md -------------------------------------------------------------------------------- /CSF.Screenplay.Docs/docs/dependencyInjection/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Docs/docs/dependencyInjection/index.md -------------------------------------------------------------------------------- /CSF.Screenplay.Docs/docs/extendingScreenplay/AbilitiesActionsAndQuestions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Docs/docs/extendingScreenplay/AbilitiesActionsAndQuestions.md -------------------------------------------------------------------------------- /CSF.Screenplay.Docs/docs/extendingScreenplay/EventHandlers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Docs/docs/extendingScreenplay/EventHandlers.md -------------------------------------------------------------------------------- /CSF.Screenplay.Docs/docs/extendingScreenplay/ReportFormtters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Docs/docs/extendingScreenplay/ReportFormtters.md -------------------------------------------------------------------------------- /CSF.Screenplay.Docs/docs/extendingScreenplay/TestIntegrations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Docs/docs/extendingScreenplay/TestIntegrations.md -------------------------------------------------------------------------------- /CSF.Screenplay.Docs/docs/extendingScreenplay/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Docs/docs/extendingScreenplay/index.md -------------------------------------------------------------------------------- /CSF.Screenplay.Docs/docs/nUnitTutorial/BestPractices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Docs/docs/nUnitTutorial/BestPractices.md -------------------------------------------------------------------------------- /CSF.Screenplay.Docs/docs/nUnitTutorial/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Docs/docs/nUnitTutorial/index.md -------------------------------------------------------------------------------- /CSF.Screenplay.Docs/docs/performables/WebApis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Docs/docs/performables/WebApis.md -------------------------------------------------------------------------------- /CSF.Screenplay.Docs/docs/performables/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Docs/docs/performables/index.md -------------------------------------------------------------------------------- /CSF.Screenplay.Docs/docs/performables/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Docs/docs/performables/toc.yml -------------------------------------------------------------------------------- /CSF.Screenplay.Docs/docs/specFlowTutorial/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Docs/docs/specFlowTutorial/index.md -------------------------------------------------------------------------------- /CSF.Screenplay.Docs/docs/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Docs/docs/toc.yml -------------------------------------------------------------------------------- /CSF.Screenplay.Docs/docs/writingPerformables/AllowCooperativeCancellation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Docs/docs/writingPerformables/AllowCooperativeCancellation.md -------------------------------------------------------------------------------- /CSF.Screenplay.Docs/docs/writingPerformables/AvoidBranchingLogic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Docs/docs/writingPerformables/AvoidBranchingLogic.md -------------------------------------------------------------------------------- /CSF.Screenplay.Docs/docs/writingPerformables/DoNotUseDiFrameworks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Docs/docs/writingPerformables/DoNotUseDiFrameworks.md -------------------------------------------------------------------------------- /CSF.Screenplay.Docs/docs/writingPerformables/ImplementICanReport.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Docs/docs/writingPerformables/ImplementICanReport.md -------------------------------------------------------------------------------- /CSF.Screenplay.Docs/docs/writingPerformables/ImplementOnePerformableInterface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Docs/docs/writingPerformables/ImplementOnePerformableInterface.md -------------------------------------------------------------------------------- /CSF.Screenplay.Docs/docs/writingPerformables/ParameterizeLowLevelPerformables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Docs/docs/writingPerformables/ParameterizeLowLevelPerformables.md -------------------------------------------------------------------------------- /CSF.Screenplay.Docs/docs/writingPerformables/PureFunctionalTasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Docs/docs/writingPerformables/PureFunctionalTasks.md -------------------------------------------------------------------------------- /CSF.Screenplay.Docs/docs/writingPerformables/StatefulButImmutable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Docs/docs/writingPerformables/StatefulButImmutable.md -------------------------------------------------------------------------------- /CSF.Screenplay.Docs/docs/writingPerformables/TasksDoNotUseAbilities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Docs/docs/writingPerformables/TasksDoNotUseAbilities.md -------------------------------------------------------------------------------- /CSF.Screenplay.Docs/docs/writingPerformables/WriteABuilder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Docs/docs/writingPerformables/WriteABuilder.md -------------------------------------------------------------------------------- /CSF.Screenplay.Docs/docs/writingPerformables/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Docs/docs/writingPerformables/index.md -------------------------------------------------------------------------------- /CSF.Screenplay.Docs/glossary/Ability.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Docs/glossary/Ability.md -------------------------------------------------------------------------------- /CSF.Screenplay.Docs/glossary/Action.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Docs/glossary/Action.md -------------------------------------------------------------------------------- /CSF.Screenplay.Docs/glossary/Asset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Docs/glossary/Asset.md -------------------------------------------------------------------------------- /CSF.Screenplay.Docs/glossary/Feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Docs/glossary/Feature.md -------------------------------------------------------------------------------- /CSF.Screenplay.Docs/glossary/Integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Docs/glossary/Integration.md -------------------------------------------------------------------------------- /CSF.Screenplay.Docs/glossary/Performable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Docs/glossary/Performable.md -------------------------------------------------------------------------------- /CSF.Screenplay.Docs/glossary/Persona.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Docs/glossary/Persona.md -------------------------------------------------------------------------------- /CSF.Screenplay.Docs/glossary/Question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Docs/glossary/Question.md -------------------------------------------------------------------------------- /CSF.Screenplay.Docs/glossary/Report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Docs/glossary/Report.md -------------------------------------------------------------------------------- /CSF.Screenplay.Docs/glossary/Scenario.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Docs/glossary/Scenario.md -------------------------------------------------------------------------------- /CSF.Screenplay.Docs/glossary/Spotlight.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Docs/glossary/Spotlight.md -------------------------------------------------------------------------------- /CSF.Screenplay.Docs/glossary/Task.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Docs/glossary/Task.md -------------------------------------------------------------------------------- /CSF.Screenplay.Docs/glossary/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Docs/glossary/index.md -------------------------------------------------------------------------------- /CSF.Screenplay.Docs/glossary/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Docs/glossary/toc.yml -------------------------------------------------------------------------------- /CSF.Screenplay.Docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Docs/index.md -------------------------------------------------------------------------------- /CSF.Screenplay.Docs/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.Docs/toc.yml -------------------------------------------------------------------------------- /CSF.Screenplay.JsonToHtmlReport.Template/CSF.Screenplay.JsonToHtmlReport.Template.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.JsonToHtmlReport.Template/CSF.Screenplay.JsonToHtmlReport.Template.proj -------------------------------------------------------------------------------- /CSF.Screenplay.JsonToHtmlReport.Template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.JsonToHtmlReport.Template/README.md -------------------------------------------------------------------------------- /CSF.Screenplay.JsonToHtmlReport.Template/src/.node-version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.JsonToHtmlReport.Template/src/.node-version -------------------------------------------------------------------------------- /CSF.Screenplay.JsonToHtmlReport.Template/src/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.JsonToHtmlReport.Template/src/babel.config.js -------------------------------------------------------------------------------- /CSF.Screenplay.JsonToHtmlReport.Template/src/css/content.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.JsonToHtmlReport.Template/src/css/content.css -------------------------------------------------------------------------------- /CSF.Screenplay.JsonToHtmlReport.Template/src/css/layers.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.JsonToHtmlReport.Template/src/css/layers.css -------------------------------------------------------------------------------- /CSF.Screenplay.JsonToHtmlReport.Template/src/css/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.JsonToHtmlReport.Template/src/css/layout.css -------------------------------------------------------------------------------- /CSF.Screenplay.JsonToHtmlReport.Template/src/css/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.JsonToHtmlReport.Template/src/css/reset.css -------------------------------------------------------------------------------- /CSF.Screenplay.JsonToHtmlReport.Template/src/css/scenarioList.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.JsonToHtmlReport.Template/src/css/scenarioList.css -------------------------------------------------------------------------------- /CSF.Screenplay.JsonToHtmlReport.Template/src/css/spinner.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.JsonToHtmlReport.Template/src/css/spinner.css -------------------------------------------------------------------------------- /CSF.Screenplay.JsonToHtmlReport.Template/src/css/summaryTable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.JsonToHtmlReport.Template/src/css/summaryTable.css -------------------------------------------------------------------------------- /CSF.Screenplay.JsonToHtmlReport.Template/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.JsonToHtmlReport.Template/src/index.js -------------------------------------------------------------------------------- /CSF.Screenplay.JsonToHtmlReport.Template/src/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.JsonToHtmlReport.Template/src/jest.config.js -------------------------------------------------------------------------------- /CSF.Screenplay.JsonToHtmlReport.Template/src/js/ReportLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.JsonToHtmlReport.Template/src/js/ReportLoader.js -------------------------------------------------------------------------------- /CSF.Screenplay.JsonToHtmlReport.Template/src/js/ReportLoader.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.JsonToHtmlReport.Template/src/js/ReportLoader.spec.js -------------------------------------------------------------------------------- /CSF.Screenplay.JsonToHtmlReport.Template/src/js/ReportWriter/FeatureElementCreator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.JsonToHtmlReport.Template/src/js/ReportWriter/FeatureElementCreator.js -------------------------------------------------------------------------------- /CSF.Screenplay.JsonToHtmlReport.Template/src/js/ReportWriter/ReportWriter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.JsonToHtmlReport.Template/src/js/ReportWriter/ReportWriter.js -------------------------------------------------------------------------------- /CSF.Screenplay.JsonToHtmlReport.Template/src/js/ReportWriter/ReportWriter.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.JsonToHtmlReport.Template/src/js/ReportWriter/ReportWriter.spec.js -------------------------------------------------------------------------------- /CSF.Screenplay.JsonToHtmlReport.Template/src/js/ReportWriter/ReportableElementCreator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.JsonToHtmlReport.Template/src/js/ReportWriter/ReportableElementCreator.js -------------------------------------------------------------------------------- /CSF.Screenplay.JsonToHtmlReport.Template/src/js/ReportWriter/ScenarioElementCreator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.JsonToHtmlReport.Template/src/js/ReportWriter/ScenarioElementCreator.js -------------------------------------------------------------------------------- /CSF.Screenplay.JsonToHtmlReport.Template/src/js/ReportWriter/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.JsonToHtmlReport.Template/src/js/ReportWriter/index.js -------------------------------------------------------------------------------- /CSF.Screenplay.JsonToHtmlReport.Template/src/js/ReportWriter/setContentOrRemove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.JsonToHtmlReport.Template/src/js/ReportWriter/setContentOrRemove.js -------------------------------------------------------------------------------- /CSF.Screenplay.JsonToHtmlReport.Template/src/js/ScenarioAggregator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.JsonToHtmlReport.Template/src/js/ScenarioAggregator.js -------------------------------------------------------------------------------- /CSF.Screenplay.JsonToHtmlReport.Template/src/js/ScenarioAggregator.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.JsonToHtmlReport.Template/src/js/ScenarioAggregator.spec.js -------------------------------------------------------------------------------- /CSF.Screenplay.JsonToHtmlReport.Template/src/js/SummaryDataGenerator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.JsonToHtmlReport.Template/src/js/SummaryDataGenerator.js -------------------------------------------------------------------------------- /CSF.Screenplay.JsonToHtmlReport.Template/src/js/SummaryDataGenerator.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.JsonToHtmlReport.Template/src/js/SummaryDataGenerator.spec.js -------------------------------------------------------------------------------- /CSF.Screenplay.JsonToHtmlReport.Template/src/js/SummaryGenerator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.JsonToHtmlReport.Template/src/js/SummaryGenerator.js -------------------------------------------------------------------------------- /CSF.Screenplay.JsonToHtmlReport.Template/src/js/SummaryGenerator.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.JsonToHtmlReport.Template/src/js/SummaryGenerator.spec.js -------------------------------------------------------------------------------- /CSF.Screenplay.JsonToHtmlReport.Template/src/js/activatePage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.JsonToHtmlReport.Template/src/js/activatePage.js -------------------------------------------------------------------------------- /CSF.Screenplay.JsonToHtmlReport.Template/src/js/activatePage.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.JsonToHtmlReport.Template/src/js/activatePage.spec.js -------------------------------------------------------------------------------- /CSF.Screenplay.JsonToHtmlReport.Template/src/js/getElementById.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.JsonToHtmlReport.Template/src/js/getElementById.js -------------------------------------------------------------------------------- /CSF.Screenplay.JsonToHtmlReport.Template/src/js/updateReportTime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.JsonToHtmlReport.Template/src/js/updateReportTime.js -------------------------------------------------------------------------------- /CSF.Screenplay.JsonToHtmlReport.Template/src/js/updateReportTime.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.JsonToHtmlReport.Template/src/js/updateReportTime.spec.js -------------------------------------------------------------------------------- /CSF.Screenplay.JsonToHtmlReport.Template/src/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.JsonToHtmlReport.Template/src/package-lock.json -------------------------------------------------------------------------------- /CSF.Screenplay.JsonToHtmlReport.Template/src/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.JsonToHtmlReport.Template/src/package.json -------------------------------------------------------------------------------- /CSF.Screenplay.JsonToHtmlReport.Template/src/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.JsonToHtmlReport.Template/src/template.html -------------------------------------------------------------------------------- /CSF.Screenplay.JsonToHtmlReport.Template/src/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.JsonToHtmlReport.Template/src/webpack.config.js -------------------------------------------------------------------------------- /CSF.Screenplay.JsonToHtmlReport/CSF.Screenplay.JsonToHtmlReport.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.JsonToHtmlReport/CSF.Screenplay.JsonToHtmlReport.csproj -------------------------------------------------------------------------------- /CSF.Screenplay.JsonToHtmlReport/IConvertsReportJsonToHtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.JsonToHtmlReport/IConvertsReportJsonToHtml.cs -------------------------------------------------------------------------------- /CSF.Screenplay.JsonToHtmlReport/IGetsHtmlTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.JsonToHtmlReport/IGetsHtmlTemplate.cs -------------------------------------------------------------------------------- /CSF.Screenplay.JsonToHtmlReport/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.JsonToHtmlReport/Program.cs -------------------------------------------------------------------------------- /CSF.Screenplay.JsonToHtmlReport/ReportConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.JsonToHtmlReport/ReportConverter.cs -------------------------------------------------------------------------------- /CSF.Screenplay.JsonToHtmlReport/ReportConverterApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.JsonToHtmlReport/ReportConverterApplication.cs -------------------------------------------------------------------------------- /CSF.Screenplay.JsonToHtmlReport/ReportConverterOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.JsonToHtmlReport/ReportConverterOptions.cs -------------------------------------------------------------------------------- /CSF.Screenplay.JsonToHtmlReport/ServiceRegistrations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.JsonToHtmlReport/ServiceRegistrations.cs -------------------------------------------------------------------------------- /CSF.Screenplay.JsonToHtmlReport/TemplateReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.JsonToHtmlReport/TemplateReader.cs -------------------------------------------------------------------------------- /CSF.Screenplay.NUnit/CSF.Screenplay.NUnit.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.NUnit/CSF.Screenplay.NUnit.csproj -------------------------------------------------------------------------------- /CSF.Screenplay.NUnit/ScreenplayAssemblyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.NUnit/ScreenplayAssemblyAttribute.cs -------------------------------------------------------------------------------- /CSF.Screenplay.NUnit/ScreenplayAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.NUnit/ScreenplayAttribute.cs -------------------------------------------------------------------------------- /CSF.Screenplay.NUnit/ScreenplayLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.NUnit/ScreenplayLocator.cs -------------------------------------------------------------------------------- /CSF.Screenplay.SpecFlow/CSF.Screenplay.SpecFlow.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.SpecFlow/CSF.Screenplay.SpecFlow.csproj -------------------------------------------------------------------------------- /CSF.Screenplay.SpecFlow/Properties/RuntimePluginInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.SpecFlow/Properties/RuntimePluginInfo.cs -------------------------------------------------------------------------------- /CSF.Screenplay.SpecFlow/ScenarioAndFeatureContextKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.SpecFlow/ScenarioAndFeatureContextKey.cs -------------------------------------------------------------------------------- /CSF.Screenplay.SpecFlow/ScreenplayBinding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.SpecFlow/ScreenplayBinding.cs -------------------------------------------------------------------------------- /CSF.Screenplay.SpecFlow/ScreenplayPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.SpecFlow/ScreenplayPlugin.cs -------------------------------------------------------------------------------- /CSF.Screenplay.SpecFlow/ScreenplaySteps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.SpecFlow/ScreenplaySteps.cs -------------------------------------------------------------------------------- /CSF.Screenplay.SpecFlow/ServiceCollectionAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.SpecFlow/ServiceCollectionAdapter.cs -------------------------------------------------------------------------------- /CSF.Screenplay.SpecFlow/ServiceProviderAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.SpecFlow/ServiceProviderAdapter.cs -------------------------------------------------------------------------------- /CSF.Screenplay.WebApis/CSF.Screenplay.WebApis.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.WebApis/CSF.Screenplay.WebApis.csproj -------------------------------------------------------------------------------- /CSF.Screenplay.WebApis/CommonHttpRequestLogic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.WebApis/CommonHttpRequestLogic.cs -------------------------------------------------------------------------------- /CSF.Screenplay.WebApis/Endpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.WebApis/Endpoint.cs -------------------------------------------------------------------------------- /CSF.Screenplay.WebApis/Endpoint.withResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.WebApis/Endpoint.withResult.cs -------------------------------------------------------------------------------- /CSF.Screenplay.WebApis/EndpointBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.WebApis/EndpointBase.cs -------------------------------------------------------------------------------- /CSF.Screenplay.WebApis/HttpRequestMessageBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.WebApis/HttpRequestMessageBuilder.cs -------------------------------------------------------------------------------- /CSF.Screenplay.WebApis/HttpRequestMessageBuilder.generic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.WebApis/HttpRequestMessageBuilder.generic.cs -------------------------------------------------------------------------------- /CSF.Screenplay.WebApis/HttpResponseMessageAndResponseType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.WebApis/HttpResponseMessageAndResponseType.cs -------------------------------------------------------------------------------- /CSF.Screenplay.WebApis/JsonEndpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.WebApis/JsonEndpoint.cs -------------------------------------------------------------------------------- /CSF.Screenplay.WebApis/JsonEndpoint.withResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.WebApis/JsonEndpoint.withResult.cs -------------------------------------------------------------------------------- /CSF.Screenplay.WebApis/MakeWebApiRequests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.WebApis/MakeWebApiRequests.cs -------------------------------------------------------------------------------- /CSF.Screenplay.WebApis/NameValueRecordCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.WebApis/NameValueRecordCollection.cs -------------------------------------------------------------------------------- /CSF.Screenplay.WebApis/ParameterizedEndpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.WebApis/ParameterizedEndpoint.cs -------------------------------------------------------------------------------- /CSF.Screenplay.WebApis/ParameterizedEndpoint.withResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.WebApis/ParameterizedEndpoint.withResult.cs -------------------------------------------------------------------------------- /CSF.Screenplay.WebApis/Resources/PerformableReportStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.WebApis/Resources/PerformableReportStrings.cs -------------------------------------------------------------------------------- /CSF.Screenplay.WebApis/Resources/PerformableReportStrings.restext: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.WebApis/Resources/PerformableReportStrings.restext -------------------------------------------------------------------------------- /CSF.Screenplay.WebApis/SendTheHttpRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.WebApis/SendTheHttpRequest.cs -------------------------------------------------------------------------------- /CSF.Screenplay.WebApis/SendTheHttpRequestAndGetJsonResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.WebApis/SendTheHttpRequestAndGetJsonResponse.cs -------------------------------------------------------------------------------- /CSF.Screenplay.WebApis/SendTheHttpRequestAndGetTheResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.WebApis/SendTheHttpRequestAndGetTheResponse.cs -------------------------------------------------------------------------------- /CSF.Screenplay.WebApis/WebApiBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.WebApis/WebApiBuilder.cs -------------------------------------------------------------------------------- /CSF.Screenplay.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay.sln -------------------------------------------------------------------------------- /CSF.Screenplay/Actors/Cast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay/Actors/Cast.cs -------------------------------------------------------------------------------- /CSF.Screenplay/Actors/Stage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay/Actors/Stage.cs -------------------------------------------------------------------------------- /CSF.Screenplay/CSF.Screenplay.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay/CSF.Screenplay.csproj -------------------------------------------------------------------------------- /CSF.Screenplay/IGetsScreenplay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay/IGetsScreenplay.cs -------------------------------------------------------------------------------- /CSF.Screenplay/Performance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay/Performance.cs -------------------------------------------------------------------------------- /CSF.Screenplay/Performances/PerformanceEventBus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay/Performances/PerformanceEventBus.cs -------------------------------------------------------------------------------- /CSF.Screenplay/Performances/PerformanceFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay/Performances/PerformanceFactory.cs -------------------------------------------------------------------------------- /CSF.Screenplay/ReportFragmentFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay/ReportFragmentFormatter.cs -------------------------------------------------------------------------------- /CSF.Screenplay/ReportModel/ActorCreatedReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay/ReportModel/ActorCreatedReport.cs -------------------------------------------------------------------------------- /CSF.Screenplay/ReportModel/ActorGainedAbilityReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay/ReportModel/ActorGainedAbilityReport.cs -------------------------------------------------------------------------------- /CSF.Screenplay/ReportModel/ActorSpotlitReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay/ReportModel/ActorSpotlitReport.cs -------------------------------------------------------------------------------- /CSF.Screenplay/ReportModel/IdentifierAndNameModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay/ReportModel/IdentifierAndNameModel.cs -------------------------------------------------------------------------------- /CSF.Screenplay/ReportModel/PerformableAsset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay/ReportModel/PerformableAsset.cs -------------------------------------------------------------------------------- /CSF.Screenplay/ReportModel/PerformableReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay/ReportModel/PerformableReport.cs -------------------------------------------------------------------------------- /CSF.Screenplay/ReportModel/PerformanceReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay/ReportModel/PerformanceReport.cs -------------------------------------------------------------------------------- /CSF.Screenplay/ReportModel/ReportMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay/ReportModel/ReportMetadata.cs -------------------------------------------------------------------------------- /CSF.Screenplay/ReportModel/ReportableModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay/ReportModel/ReportableModelBase.cs -------------------------------------------------------------------------------- /CSF.Screenplay/ReportModel/ScreenplayReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay/ReportModel/ScreenplayReport.cs -------------------------------------------------------------------------------- /CSF.Screenplay/ReportModel/SpotlightTurnedOffReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay/ReportModel/SpotlightTurnedOffReport.cs -------------------------------------------------------------------------------- /CSF.Screenplay/Reporting/FormattableFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay/Reporting/FormattableFormatter.cs -------------------------------------------------------------------------------- /CSF.Screenplay/Reporting/HumanizerFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay/Reporting/HumanizerFormatter.cs -------------------------------------------------------------------------------- /CSF.Screenplay/Reporting/IDeserializesReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay/Reporting/IDeserializesReport.cs -------------------------------------------------------------------------------- /CSF.Screenplay/Reporting/ITestsPathForWritePermissions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay/Reporting/ITestsPathForWritePermissions.cs -------------------------------------------------------------------------------- /CSF.Screenplay/Reporting/JsonScreenplayReportReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay/Reporting/JsonScreenplayReportReader.cs -------------------------------------------------------------------------------- /CSF.Screenplay/Reporting/JsonScreenplayReporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay/Reporting/JsonScreenplayReporter.cs -------------------------------------------------------------------------------- /CSF.Screenplay/Reporting/NameFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay/Reporting/NameFormatter.cs -------------------------------------------------------------------------------- /CSF.Screenplay/Reporting/NoOpReporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay/Reporting/NoOpReporter.cs -------------------------------------------------------------------------------- /CSF.Screenplay/Reporting/PerformanceReportBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay/Reporting/PerformanceReportBuilder.cs -------------------------------------------------------------------------------- /CSF.Screenplay/Reporting/ReportFormatCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay/Reporting/ReportFormatCreator.cs -------------------------------------------------------------------------------- /CSF.Screenplay/Reporting/ScreenplayReportBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay/Reporting/ScreenplayReportBuilder.cs -------------------------------------------------------------------------------- /CSF.Screenplay/Reporting/ToStringFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay/Reporting/ToStringFormatter.cs -------------------------------------------------------------------------------- /CSF.Screenplay/Reporting/ValueFormatterProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay/Reporting/ValueFormatterProvider.cs -------------------------------------------------------------------------------- /CSF.Screenplay/Reporting/ValueFormatterRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay/Reporting/ValueFormatterRegistry.cs -------------------------------------------------------------------------------- /CSF.Screenplay/Reporting/WritePermissionTester.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay/Reporting/WritePermissionTester.cs -------------------------------------------------------------------------------- /CSF.Screenplay/Resources/FormatterStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay/Resources/FormatterStrings.cs -------------------------------------------------------------------------------- /CSF.Screenplay/Resources/FormatterStrings.restext: -------------------------------------------------------------------------------- 1 | NullValue = -------------------------------------------------------------------------------- /CSF.Screenplay/Resources/ReportStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay/Resources/ReportStrings.cs -------------------------------------------------------------------------------- /CSF.Screenplay/Resources/ReportStrings.restext: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay/Resources/ReportStrings.restext -------------------------------------------------------------------------------- /CSF.Screenplay/ScopeAndPerformance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay/ScopeAndPerformance.cs -------------------------------------------------------------------------------- /CSF.Screenplay/Screenplay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay/Screenplay.cs -------------------------------------------------------------------------------- /CSF.Screenplay/ScreenplayExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay/ScreenplayExtensions.cs -------------------------------------------------------------------------------- /CSF.Screenplay/ScreenplayOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay/ScreenplayOptions.cs -------------------------------------------------------------------------------- /CSF.Screenplay/ScreenplayServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/CSF.Screenplay/ScreenplayServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/README.md -------------------------------------------------------------------------------- /Tests/CSF.Screenplay.NUnit.Tests/CSF.Screenplay.NUnit.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/Tests/CSF.Screenplay.NUnit.Tests/CSF.Screenplay.NUnit.Tests.csproj -------------------------------------------------------------------------------- /Tests/CSF.Screenplay.NUnit.Tests/GlobalUsings.cs: -------------------------------------------------------------------------------- 1 | global using NUnit.Framework; 2 | -------------------------------------------------------------------------------- /Tests/CSF.Screenplay.NUnit.Tests/Properties/ScreenplayAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/Tests/CSF.Screenplay.NUnit.Tests/Properties/ScreenplayAttributes.cs -------------------------------------------------------------------------------- /Tests/CSF.Screenplay.NUnit.Tests/ScreenplayFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/Tests/CSF.Screenplay.NUnit.Tests/ScreenplayFactory.cs -------------------------------------------------------------------------------- /Tests/CSF.Screenplay.NUnit.Tests/TestWithDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/Tests/CSF.Screenplay.NUnit.Tests/TestWithDescription.cs -------------------------------------------------------------------------------- /Tests/CSF.Screenplay.NUnit.Tests/TestWithoutDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/Tests/CSF.Screenplay.NUnit.Tests/TestWithoutDescription.cs -------------------------------------------------------------------------------- /Tests/CSF.Screenplay.SpecFlow.Tests/AddingUp.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/Tests/CSF.Screenplay.SpecFlow.Tests/AddingUp.feature -------------------------------------------------------------------------------- /Tests/CSF.Screenplay.SpecFlow.Tests/AddingUp/AddNumbers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/Tests/CSF.Screenplay.SpecFlow.Tests/AddingUp/AddNumbers.cs -------------------------------------------------------------------------------- /Tests/CSF.Screenplay.SpecFlow.Tests/AddingUp/AddTheNumber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/Tests/CSF.Screenplay.SpecFlow.Tests/AddingUp/AddTheNumber.cs -------------------------------------------------------------------------------- /Tests/CSF.Screenplay.SpecFlow.Tests/AddingUp/AddThreeNumbers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/Tests/CSF.Screenplay.SpecFlow.Tests/AddingUp/AddThreeNumbers.cs -------------------------------------------------------------------------------- /Tests/CSF.Screenplay.SpecFlow.Tests/AddingUp/AddingUpBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/Tests/CSF.Screenplay.SpecFlow.Tests/AddingUp/AddingUpBuilder.cs -------------------------------------------------------------------------------- /Tests/CSF.Screenplay.SpecFlow.Tests/AddingUp/GetTheNumber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/Tests/CSF.Screenplay.SpecFlow.Tests/AddingUp/GetTheNumber.cs -------------------------------------------------------------------------------- /Tests/CSF.Screenplay.SpecFlow.Tests/AddingUp/SetTheNumber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/Tests/CSF.Screenplay.SpecFlow.Tests/AddingUp/SetTheNumber.cs -------------------------------------------------------------------------------- /Tests/CSF.Screenplay.SpecFlow.Tests/CSF.Screenplay.SpecFlow.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/Tests/CSF.Screenplay.SpecFlow.Tests/CSF.Screenplay.SpecFlow.Tests.csproj -------------------------------------------------------------------------------- /Tests/CSF.Screenplay.SpecFlow.Tests/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/Tests/CSF.Screenplay.SpecFlow.Tests/GlobalUsings.cs -------------------------------------------------------------------------------- /Tests/CSF.Screenplay.SpecFlow.Tests/Mathias.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/Tests/CSF.Screenplay.SpecFlow.Tests/Mathias.cs -------------------------------------------------------------------------------- /Tests/CSF.Screenplay.SpecFlow.Tests/ServiceCollectionAdapterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/Tests/CSF.Screenplay.SpecFlow.Tests/ServiceCollectionAdapterTests.cs -------------------------------------------------------------------------------- /Tests/CSF.Screenplay.SpecFlow.Tests/StepDefinitions/AddingUpSteps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/Tests/CSF.Screenplay.SpecFlow.Tests/StepDefinitions/AddingUpSteps.cs -------------------------------------------------------------------------------- /Tests/CSF.Screenplay.Tests/ActorExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/Tests/CSF.Screenplay.Tests/ActorExtensionsTests.cs -------------------------------------------------------------------------------- /Tests/CSF.Screenplay.Tests/ActorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/Tests/CSF.Screenplay.Tests/ActorTests.cs -------------------------------------------------------------------------------- /Tests/CSF.Screenplay.Tests/Actors/CastTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/Tests/CSF.Screenplay.Tests/Actors/CastTests.cs -------------------------------------------------------------------------------- /Tests/CSF.Screenplay.Tests/Actors/NamedActorAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/Tests/CSF.Screenplay.Tests/Actors/NamedActorAttribute.cs -------------------------------------------------------------------------------- /Tests/CSF.Screenplay.Tests/Actors/NamedActorCustomization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/Tests/CSF.Screenplay.Tests/Actors/NamedActorCustomization.cs -------------------------------------------------------------------------------- /Tests/CSF.Screenplay.Tests/Actors/StageTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/Tests/CSF.Screenplay.Tests/Actors/StageTests.cs -------------------------------------------------------------------------------- /Tests/CSF.Screenplay.Tests/AutoMoqDataAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/Tests/CSF.Screenplay.Tests/AutoMoqDataAttribute.cs -------------------------------------------------------------------------------- /Tests/CSF.Screenplay.Tests/AutofixtureServicesAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/Tests/CSF.Screenplay.Tests/AutofixtureServicesAttribute.cs -------------------------------------------------------------------------------- /Tests/CSF.Screenplay.Tests/AutofixtureServicesCustomization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/Tests/CSF.Screenplay.Tests/AutofixtureServicesCustomization.cs -------------------------------------------------------------------------------- /Tests/CSF.Screenplay.Tests/CSF.Screenplay.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/Tests/CSF.Screenplay.Tests/CSF.Screenplay.Tests.csproj -------------------------------------------------------------------------------- /Tests/CSF.Screenplay.Tests/DefaultScreenplayAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/Tests/CSF.Screenplay.Tests/DefaultScreenplayAttribute.cs -------------------------------------------------------------------------------- /Tests/CSF.Screenplay.Tests/DefaultScreenplayCustomization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/Tests/CSF.Screenplay.Tests/DefaultScreenplayCustomization.cs -------------------------------------------------------------------------------- /Tests/CSF.Screenplay.Tests/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/Tests/CSF.Screenplay.Tests/GlobalUsings.cs -------------------------------------------------------------------------------- /Tests/CSF.Screenplay.Tests/Integration/EventBusIntegrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/Tests/CSF.Screenplay.Tests/Integration/EventBusIntegrationTests.cs -------------------------------------------------------------------------------- /Tests/CSF.Screenplay.Tests/Integration/PerformanceIntegrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/Tests/CSF.Screenplay.Tests/Integration/PerformanceIntegrationTests.cs -------------------------------------------------------------------------------- /Tests/CSF.Screenplay.Tests/JsonToHtmlReport/TemplateReaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/Tests/CSF.Screenplay.Tests/JsonToHtmlReport/TemplateReaderTests.cs -------------------------------------------------------------------------------- /Tests/CSF.Screenplay.Tests/Performables/StopwatchTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/Tests/CSF.Screenplay.Tests/Performables/StopwatchTests.cs -------------------------------------------------------------------------------- /Tests/CSF.Screenplay.Tests/Performables/TimeSpanBuilderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/Tests/CSF.Screenplay.Tests/Performables/TimeSpanBuilderTests.cs -------------------------------------------------------------------------------- /Tests/CSF.Screenplay.Tests/PerformanceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/Tests/CSF.Screenplay.Tests/PerformanceTests.cs -------------------------------------------------------------------------------- /Tests/CSF.Screenplay.Tests/ReportFragmentFormatterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/Tests/CSF.Screenplay.Tests/ReportFragmentFormatterTests.cs -------------------------------------------------------------------------------- /Tests/CSF.Screenplay.Tests/Reporting/FormattableFormatterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/Tests/CSF.Screenplay.Tests/Reporting/FormattableFormatterTests.cs -------------------------------------------------------------------------------- /Tests/CSF.Screenplay.Tests/Reporting/HumanizerFormatterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/Tests/CSF.Screenplay.Tests/Reporting/HumanizerFormatterTests.cs -------------------------------------------------------------------------------- /Tests/CSF.Screenplay.Tests/Reporting/JsonScreenplayReportReaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/Tests/CSF.Screenplay.Tests/Reporting/JsonScreenplayReportReaderTests.cs -------------------------------------------------------------------------------- /Tests/CSF.Screenplay.Tests/Reporting/JsonScreenplayReporterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/Tests/CSF.Screenplay.Tests/Reporting/JsonScreenplayReporterTests.cs -------------------------------------------------------------------------------- /Tests/CSF.Screenplay.Tests/Reporting/NameFormatterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/Tests/CSF.Screenplay.Tests/Reporting/NameFormatterTests.cs -------------------------------------------------------------------------------- /Tests/CSF.Screenplay.Tests/Reporting/PerformanceReportBuilderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/Tests/CSF.Screenplay.Tests/Reporting/PerformanceReportBuilderTests.cs -------------------------------------------------------------------------------- /Tests/CSF.Screenplay.Tests/Reporting/ReportFormatCreatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/Tests/CSF.Screenplay.Tests/Reporting/ReportFormatCreatorTests.cs -------------------------------------------------------------------------------- /Tests/CSF.Screenplay.Tests/Reporting/ToStringFormatterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/Tests/CSF.Screenplay.Tests/Reporting/ToStringFormatterTests.cs -------------------------------------------------------------------------------- /Tests/CSF.Screenplay.Tests/Reporting/ValueFormatterProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/Tests/CSF.Screenplay.Tests/Reporting/ValueFormatterProviderTests.cs -------------------------------------------------------------------------------- /Tests/CSF.Screenplay.Tests/Reporting/ValueFormatterRegistryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/Tests/CSF.Screenplay.Tests/Reporting/ValueFormatterRegistryTests.cs -------------------------------------------------------------------------------- /Tests/CSF.Screenplay.Tests/Reporting/WithMemoryStreamAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/Tests/CSF.Screenplay.Tests/Reporting/WithMemoryStreamAttribute.cs -------------------------------------------------------------------------------- /Tests/CSF.Screenplay.Tests/Reporting/WithMemoryStreamCustomization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/Tests/CSF.Screenplay.Tests/Reporting/WithMemoryStreamCustomization.cs -------------------------------------------------------------------------------- /Tests/CSF.Screenplay.Tests/Reporting/WritePermissionTesterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/Tests/CSF.Screenplay.Tests/Reporting/WritePermissionTesterTests.cs -------------------------------------------------------------------------------- /Tests/CSF.Screenplay.Tests/ScreenplayExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/Tests/CSF.Screenplay.Tests/ScreenplayExtensionsTests.cs -------------------------------------------------------------------------------- /Tests/CSF.Screenplay.Tests/ScreenplayTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/Tests/CSF.Screenplay.Tests/ScreenplayTests.cs -------------------------------------------------------------------------------- /Tests/CSF.Screenplay.Tests/Stubs/SampleAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/Tests/CSF.Screenplay.Tests/Stubs/SampleAction.cs -------------------------------------------------------------------------------- /Tests/CSF.Screenplay.Tests/Stubs/SampleGenericQuestion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/Tests/CSF.Screenplay.Tests/Stubs/SampleGenericQuestion.cs -------------------------------------------------------------------------------- /Tests/CSF.Screenplay.Tests/Stubs/SampleQuestion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/Tests/CSF.Screenplay.Tests/Stubs/SampleQuestion.cs -------------------------------------------------------------------------------- /Tests/CSF.Screenplay.Tests/Stubs/ThrowingAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/Tests/CSF.Screenplay.Tests/Stubs/ThrowingAction.cs -------------------------------------------------------------------------------- /Tests/CSF.Screenplay.Tests/WebApis/HttpRequestMessageBuilderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/Tests/CSF.Screenplay.Tests/WebApis/HttpRequestMessageBuilderTests.cs -------------------------------------------------------------------------------- /Tests/CSF.Screenplay.Tests/WebApis/MakeWebApiRequestsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/Tests/CSF.Screenplay.Tests/WebApis/MakeWebApiRequestsTests.cs -------------------------------------------------------------------------------- /Tests/CSF.Screenplay.Tests/WebApis/NameValueRecordCollectionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/Tests/CSF.Screenplay.Tests/WebApis/NameValueRecordCollectionTests.cs -------------------------------------------------------------------------------- /Tests/CSF.Screenplay.Tests/WebApis/SendTheHttpRequestAndGetJsonResponseTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/Tests/CSF.Screenplay.Tests/WebApis/SendTheHttpRequestAndGetJsonResponseTests.cs -------------------------------------------------------------------------------- /Tests/CSF.Screenplay.Tests/WebApis/SendTheHttpRequestAndGetTheResponseTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/Tests/CSF.Screenplay.Tests/WebApis/SendTheHttpRequestAndGetTheResponseTests.cs -------------------------------------------------------------------------------- /Tests/CSF.Screenplay.Tests/WebApis/SendTheHttpRequestTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/Tests/CSF.Screenplay.Tests/WebApis/SendTheHttpRequestTests.cs -------------------------------------------------------------------------------- /Tests/CSF.Screenplay.Tests/WebApis/SendsMockHttpRequestsAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/Tests/CSF.Screenplay.Tests/WebApis/SendsMockHttpRequestsAttribute.cs -------------------------------------------------------------------------------- /Tests/CSF.Screenplay.Tests/WebApis/WebApiBuilderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/Tests/CSF.Screenplay.Tests/WebApis/WebApiBuilderTests.cs -------------------------------------------------------------------------------- /Tools/appveyor-upload-test-results.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/Tools/appveyor-upload-test-results.ps1 -------------------------------------------------------------------------------- /Tools/appveyor_publish_docs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/Tools/appveyor_publish_docs.ps1 -------------------------------------------------------------------------------- /Tools/run-tests-with-coverage.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/Tools/run-tests-with-coverage.ps1 -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.Abilities.UseAStopwatch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.Abilities.UseAStopwatch.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.Abilities.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.Abilities.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.Actor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.Actor.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.ActorExtensions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.ActorExtensions.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.Actors.ActorEventArgs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.Actors.ActorEventArgs.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.Actors.Cast.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.Actors.Cast.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.Actors.GainAbilityEventArgs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.Actors.GainAbilityEventArgs.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.Actors.ICanPerformGiven.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.Actors.ICanPerformGiven.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.Actors.ICanPerformThen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.Actors.ICanPerformThen.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.Actors.ICanPerformWhen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.Actors.ICanPerformWhen.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.Actors.IHasPerformableEvents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.Actors.IHasPerformableEvents.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.Actors.PerformableAssetEventArgs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.Actors.PerformableAssetEventArgs.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.Actors.PerformableEventArgs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.Actors.PerformableEventArgs.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.Actors.PerformableFailureEventArgs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.Actors.PerformableFailureEventArgs.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.Actors.PerformableResultEventArgs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.Actors.PerformableResultEventArgs.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.Actors.PerformancePhase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.Actors.PerformancePhase.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.Actors.Stage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.Actors.Stage.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.Actors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.Actors.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.CastExtensions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.CastExtensions.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.ICanPerform.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.ICanPerform.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.ICanReport.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.ICanReport.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.ICast.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.ICast.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.IFormatsReportFragment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.IFormatsReportFragment.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.IGetsScreenplay.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.IGetsScreenplay.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.IHasAbilities.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.IHasAbilities.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.IHasName.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.IHasName.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.IHasPerformanceIdentity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.IHasPerformanceIdentity.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.IHasServiceProvider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.IHasServiceProvider.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.IHostsPerformance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.IHostsPerformance.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.IPerformable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.IPerformable.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.IPerformableWithResult-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.IPerformableWithResult-1.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.IPerformableWithResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.IPerformableWithResult.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.IPerformance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.IPerformance.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.IPersona.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.IPersona.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.IStage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.IStage.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.JsonToHtmlReport.IConvertsReportJsonToHtml.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.JsonToHtmlReport.IConvertsReportJsonToHtml.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.JsonToHtmlReport.IGetsHtmlTemplate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.JsonToHtmlReport.IGetsHtmlTemplate.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.JsonToHtmlReport.Program.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.JsonToHtmlReport.Program.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.JsonToHtmlReport.ReportConverter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.JsonToHtmlReport.ReportConverter.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.JsonToHtmlReport.ReportConverterApplication.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.JsonToHtmlReport.ReportConverterApplication.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.JsonToHtmlReport.ReportConverterOptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.JsonToHtmlReport.ReportConverterOptions.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.JsonToHtmlReport.ServiceRegistrations.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.JsonToHtmlReport.ServiceRegistrations.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.JsonToHtmlReport.TemplateReader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.JsonToHtmlReport.TemplateReader.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.JsonToHtmlReport.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.JsonToHtmlReport.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.Performables.IGetsPerformable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.Performables.IGetsPerformable.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.Performables.IGetsPerformableWithResult-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.Performables.IGetsPerformableWithResult-1.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.Performables.IGetsPerformableWithResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.Performables.IGetsPerformableWithResult.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.Performables.IProvidesTimeSpan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.Performables.IProvidesTimeSpan.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.Performables.PerformableException.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.Performables.PerformableException.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.Performables.ReadTheStopwatch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.Performables.ReadTheStopwatch.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.Performables.ResetTheStopwatch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.Performables.ResetTheStopwatch.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.Performables.StartTheStopwatch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.Performables.StartTheStopwatch.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.Performables.StopTheStopwatch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.Performables.StopTheStopwatch.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.Performables.StopwatchBuilder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.Performables.StopwatchBuilder.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.Performables.TimeSpanBuilder-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.Performables.TimeSpanBuilder-1.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.Performables.TimeSpanBuilder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.Performables.TimeSpanBuilder.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.Performables.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.Performables.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.Performance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.Performance.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.PerformanceStarter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.PerformanceStarter.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.Performances.IBeginsAndEndsPerformance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.Performances.IBeginsAndEndsPerformance.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.Performances.ICreatesPerformance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.Performances.ICreatesPerformance.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.Performances.IHasPerformanceEvents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.Performances.IHasPerformanceEvents.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.Performances.IRelaysPerformanceEvents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.Performances.IRelaysPerformanceEvents.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.Performances.IdentifierAndName.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.Performances.IdentifierAndName.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.Performances.PerformanceEventArgs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.Performances.PerformanceEventArgs.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.Performances.PerformanceEventBus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.Performances.PerformanceEventBus.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.Performances.PerformanceFactory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.Performances.PerformanceFactory.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.Performances.PerformanceFinishedEventArgs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.Performances.PerformanceFinishedEventArgs.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.Performances.PerformanceScopeEventArgs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.Performances.PerformanceScopeEventArgs.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.Performances.PerformanceState.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.Performances.PerformanceState.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.Performances.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.Performances.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.ReportFragment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.ReportFragment.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.ReportFragmentFormatter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.ReportFragmentFormatter.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.ReportModel.ActorCreatedReport.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.ReportModel.ActorCreatedReport.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.ReportModel.ActorGainedAbilityReport.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.ReportModel.ActorGainedAbilityReport.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.ReportModel.ActorSpotlitReport.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.ReportModel.ActorSpotlitReport.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.ReportModel.IdentifierAndNameModel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.ReportModel.IdentifierAndNameModel.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.ReportModel.PerformableAsset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.ReportModel.PerformableAsset.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.ReportModel.PerformableReport.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.ReportModel.PerformableReport.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.ReportModel.PerformanceReport.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.ReportModel.PerformanceReport.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.ReportModel.ReportMetadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.ReportModel.ReportMetadata.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.ReportModel.ReportableModelBase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.ReportModel.ReportableModelBase.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.ReportModel.ScreenplayReport.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.ReportModel.ScreenplayReport.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.ReportModel.SpotlightTurnedOffReport.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.ReportModel.SpotlightTurnedOffReport.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.ReportModel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.ReportModel.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.Reporting.FormattableFormatter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.Reporting.FormattableFormatter.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.Reporting.HumanizerFormatter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.Reporting.HumanizerFormatter.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.Reporting.IDeserializesReport.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.Reporting.IDeserializesReport.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.Reporting.IFormattableValue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.Reporting.IFormattableValue.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.Reporting.IFormatterRegistry.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.Reporting.IFormatterRegistry.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.Reporting.IGetsReportFormat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.Reporting.IGetsReportFormat.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.Reporting.IGetsValueFormatter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.Reporting.IGetsValueFormatter.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.Reporting.IReporter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.Reporting.IReporter.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.Reporting.ITestsPathForWritePermissions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.Reporting.ITestsPathForWritePermissions.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.Reporting.IValueFormatter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.Reporting.IValueFormatter.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.Reporting.JsonScreenplayReportReader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.Reporting.JsonScreenplayReportReader.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.Reporting.JsonScreenplayReporter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.Reporting.JsonScreenplayReporter.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.Reporting.NameAndValue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.Reporting.NameAndValue.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.Reporting.NameFormatter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.Reporting.NameFormatter.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.Reporting.NoOpReporter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.Reporting.NoOpReporter.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.Reporting.PerformanceReportBuilder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.Reporting.PerformanceReportBuilder.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.Reporting.ReportFormat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.Reporting.ReportFormat.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.Reporting.ReportFormatCreator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.Reporting.ReportFormatCreator.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.Reporting.ScreenplayReportBuilder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.Reporting.ScreenplayReportBuilder.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.Reporting.ToStringFormatter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.Reporting.ToStringFormatter.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.Reporting.ValueFormatterExtensions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.Reporting.ValueFormatterExtensions.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.Reporting.ValueFormatterProvider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.Reporting.ValueFormatterProvider.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.Reporting.ValueFormatterRegistry.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.Reporting.ValueFormatterRegistry.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.Reporting.WritePermissionTester.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.Reporting.WritePermissionTester.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.Reporting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.Reporting.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.ScopeAndPerformance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.ScopeAndPerformance.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.Screenplay.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.Screenplay.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.ScreenplayAssemblyAttribute.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.ScreenplayAssemblyAttribute.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.ScreenplayAttribute.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.ScreenplayAttribute.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.ScreenplayBinding.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.ScreenplayBinding.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.ScreenplayExtensions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.ScreenplayExtensions.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.ScreenplayLocator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.ScreenplayLocator.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.ScreenplayOptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.ScreenplayOptions.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.ScreenplayPlugin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.ScreenplayPlugin.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.ScreenplayServiceCollectionExtensions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.ScreenplayServiceCollectionExtensions.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.ScreenplaySteps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.ScreenplaySteps.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.ServiceCollectionAdapter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.ServiceCollectionAdapter.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.ServiceProviderAdapter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.ServiceProviderAdapter.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.StageExtensions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.StageExtensions.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.WebApis.Endpoint-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.WebApis.Endpoint-1.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.WebApis.Endpoint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.WebApis.Endpoint.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.WebApis.EndpointBase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.WebApis.EndpointBase.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.WebApis.HttpRequestMessageBuilder-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.WebApis.HttpRequestMessageBuilder-1.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.WebApis.HttpRequestMessageBuilder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.WebApis.HttpRequestMessageBuilder.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.WebApis.HttpResponseMessageAndResponseType-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.WebApis.HttpResponseMessageAndResponseType-1.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.WebApis.JsonEndpoint-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.WebApis.JsonEndpoint-1.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.WebApis.JsonEndpoint-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.WebApis.JsonEndpoint-2.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.WebApis.MakeWebApiRequests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.WebApis.MakeWebApiRequests.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.WebApis.NameValueRecordCollection-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.WebApis.NameValueRecordCollection-2.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.WebApis.ParameterizedEndpoint-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.WebApis.ParameterizedEndpoint-1.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.WebApis.ParameterizedEndpoint-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.WebApis.ParameterizedEndpoint-2.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.WebApis.SendTheHttpRequest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.WebApis.SendTheHttpRequest.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.WebApis.SendTheHttpRequestAndGetJsonResponse-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.WebApis.SendTheHttpRequestAndGetJsonResponse-1.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.WebApis.SendTheHttpRequestAndGetTheResponse-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.WebApis.SendTheHttpRequestAndGetTheResponse-1.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.WebApis.WebApiBuilder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.WebApis.WebApiBuilder.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.WebApis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.WebApis.html -------------------------------------------------------------------------------- /docs/api/CSF.Screenplay.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/CSF.Screenplay.html -------------------------------------------------------------------------------- /docs/api/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/toc.html -------------------------------------------------------------------------------- /docs/api/toc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/api/toc.json -------------------------------------------------------------------------------- /docs/docs/GettingReports.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/docs/GettingReports.html -------------------------------------------------------------------------------- /docs/docs/HowScreenplayAndPerformanceRelate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/docs/HowScreenplayAndPerformanceRelate.html -------------------------------------------------------------------------------- /docs/docs/MakeupOfAScreenplay.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/docs/MakeupOfAScreenplay.html -------------------------------------------------------------------------------- /docs/docs/ScreenplayInTheTestingStack.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/docs/ScreenplayInTheTestingStack.html -------------------------------------------------------------------------------- /docs/docs/StandaloneScreenplay.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/docs/StandaloneScreenplay.html -------------------------------------------------------------------------------- /docs/docs/SuitabilityAsATestingTool.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/docs/SuitabilityAsATestingTool.html -------------------------------------------------------------------------------- /docs/docs/WritingTests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/docs/WritingTests.html -------------------------------------------------------------------------------- /docs/docs/builderPattern/ConsumingBuilders.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/docs/builderPattern/ConsumingBuilders.html -------------------------------------------------------------------------------- /docs/docs/builderPattern/WritingBuilders.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/docs/builderPattern/WritingBuilders.html -------------------------------------------------------------------------------- /docs/docs/builderPattern/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/docs/builderPattern/index.html -------------------------------------------------------------------------------- /docs/docs/builderPattern/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/docs/builderPattern/toc.html -------------------------------------------------------------------------------- /docs/docs/builderPattern/toc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/docs/builderPattern/toc.json -------------------------------------------------------------------------------- /docs/docs/dependencyInjection/AddingServices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/docs/dependencyInjection/AddingServices.html -------------------------------------------------------------------------------- /docs/docs/dependencyInjection/DependencyInjectionScope.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/docs/dependencyInjection/DependencyInjectionScope.html -------------------------------------------------------------------------------- /docs/docs/dependencyInjection/InjectableServices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/docs/dependencyInjection/InjectableServices.html -------------------------------------------------------------------------------- /docs/docs/dependencyInjection/InjectingServices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/docs/dependencyInjection/InjectingServices.html -------------------------------------------------------------------------------- /docs/docs/dependencyInjection/Performables.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/docs/dependencyInjection/Performables.html -------------------------------------------------------------------------------- /docs/docs/dependencyInjection/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/docs/dependencyInjection/index.html -------------------------------------------------------------------------------- /docs/docs/extendingScreenplay/AbilitiesActionsAndQuestions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/docs/extendingScreenplay/AbilitiesActionsAndQuestions.html -------------------------------------------------------------------------------- /docs/docs/extendingScreenplay/EventHandlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/docs/extendingScreenplay/EventHandlers.html -------------------------------------------------------------------------------- /docs/docs/extendingScreenplay/ReportFormtters.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/docs/extendingScreenplay/ReportFormtters.html -------------------------------------------------------------------------------- /docs/docs/extendingScreenplay/TestIntegrations.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/docs/extendingScreenplay/TestIntegrations.html -------------------------------------------------------------------------------- /docs/docs/extendingScreenplay/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/docs/extendingScreenplay/index.html -------------------------------------------------------------------------------- /docs/docs/nUnitTutorial/BestPractices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/docs/nUnitTutorial/BestPractices.html -------------------------------------------------------------------------------- /docs/docs/nUnitTutorial/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/docs/nUnitTutorial/index.html -------------------------------------------------------------------------------- /docs/docs/performables/WebApis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/docs/performables/WebApis.html -------------------------------------------------------------------------------- /docs/docs/performables/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/docs/performables/index.html -------------------------------------------------------------------------------- /docs/docs/performables/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/docs/performables/toc.html -------------------------------------------------------------------------------- /docs/docs/performables/toc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/docs/performables/toc.json -------------------------------------------------------------------------------- /docs/docs/specFlowTutorial/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/docs/specFlowTutorial/index.html -------------------------------------------------------------------------------- /docs/docs/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/docs/toc.html -------------------------------------------------------------------------------- /docs/docs/toc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/docs/toc.json -------------------------------------------------------------------------------- /docs/docs/writingPerformables/AllowCooperativeCancellation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/docs/writingPerformables/AllowCooperativeCancellation.html -------------------------------------------------------------------------------- /docs/docs/writingPerformables/AvoidBranchingLogic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/docs/writingPerformables/AvoidBranchingLogic.html -------------------------------------------------------------------------------- /docs/docs/writingPerformables/DoNotUseDiFrameworks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/docs/writingPerformables/DoNotUseDiFrameworks.html -------------------------------------------------------------------------------- /docs/docs/writingPerformables/ImplementICanReport.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/docs/writingPerformables/ImplementICanReport.html -------------------------------------------------------------------------------- /docs/docs/writingPerformables/ImplementOnePerformableInterface.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/docs/writingPerformables/ImplementOnePerformableInterface.html -------------------------------------------------------------------------------- /docs/docs/writingPerformables/ParameterizeLowLevelPerformables.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/docs/writingPerformables/ParameterizeLowLevelPerformables.html -------------------------------------------------------------------------------- /docs/docs/writingPerformables/PureFunctionalTasks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/docs/writingPerformables/PureFunctionalTasks.html -------------------------------------------------------------------------------- /docs/docs/writingPerformables/StatefulButImmutable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/docs/writingPerformables/StatefulButImmutable.html -------------------------------------------------------------------------------- /docs/docs/writingPerformables/TasksDoNotUseAbilities.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/docs/writingPerformables/TasksDoNotUseAbilities.html -------------------------------------------------------------------------------- /docs/docs/writingPerformables/WriteABuilder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/docs/writingPerformables/WriteABuilder.html -------------------------------------------------------------------------------- /docs/docs/writingPerformables/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/docs/writingPerformables/index.html -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/glossary/Ability.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/glossary/Ability.html -------------------------------------------------------------------------------- /docs/glossary/Action.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/glossary/Action.html -------------------------------------------------------------------------------- /docs/glossary/Asset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/glossary/Asset.html -------------------------------------------------------------------------------- /docs/glossary/Feature.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/glossary/Feature.html -------------------------------------------------------------------------------- /docs/glossary/Integration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/glossary/Integration.html -------------------------------------------------------------------------------- /docs/glossary/Performable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/glossary/Performable.html -------------------------------------------------------------------------------- /docs/glossary/Persona.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/glossary/Persona.html -------------------------------------------------------------------------------- /docs/glossary/Question.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/glossary/Question.html -------------------------------------------------------------------------------- /docs/glossary/Report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/glossary/Report.html -------------------------------------------------------------------------------- /docs/glossary/Scenario.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/glossary/Scenario.html -------------------------------------------------------------------------------- /docs/glossary/Spotlight.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/glossary/Spotlight.html -------------------------------------------------------------------------------- /docs/glossary/Task.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/glossary/Task.html -------------------------------------------------------------------------------- /docs/glossary/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/glossary/index.html -------------------------------------------------------------------------------- /docs/glossary/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/glossary/toc.html -------------------------------------------------------------------------------- /docs/glossary/toc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/glossary/toc.json -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/index.json -------------------------------------------------------------------------------- /docs/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/logo.svg -------------------------------------------------------------------------------- /docs/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/manifest.json -------------------------------------------------------------------------------- /docs/public/architecture-I3QFYML2-NK53GYGD.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/architecture-I3QFYML2-NK53GYGD.min.js -------------------------------------------------------------------------------- /docs/public/architecture-I3QFYML2-NK53GYGD.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/architecture-I3QFYML2-NK53GYGD.min.js.map -------------------------------------------------------------------------------- /docs/public/architectureDiagram-AYX4OTIS-UEH2Z7UQ.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/architectureDiagram-AYX4OTIS-UEH2Z7UQ.min.js -------------------------------------------------------------------------------- /docs/public/architectureDiagram-AYX4OTIS-UEH2Z7UQ.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/architectureDiagram-AYX4OTIS-UEH2Z7UQ.min.js.map -------------------------------------------------------------------------------- /docs/public/blockDiagram-XN6IQ5JY-VK3M7PUD.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/blockDiagram-XN6IQ5JY-VK3M7PUD.min.js -------------------------------------------------------------------------------- /docs/public/blockDiagram-XN6IQ5JY-VK3M7PUD.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/blockDiagram-XN6IQ5JY-VK3M7PUD.min.js.map -------------------------------------------------------------------------------- /docs/public/bootstrap-icons-OCU552PF.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/bootstrap-icons-OCU552PF.woff -------------------------------------------------------------------------------- /docs/public/bootstrap-icons-X6UQXWUS.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/bootstrap-icons-X6UQXWUS.woff2 -------------------------------------------------------------------------------- /docs/public/c4Diagram-GPMAACGM-P3DMZBSW.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/c4Diagram-GPMAACGM-P3DMZBSW.min.js -------------------------------------------------------------------------------- /docs/public/c4Diagram-GPMAACGM-P3DMZBSW.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/c4Diagram-GPMAACGM-P3DMZBSW.min.js.map -------------------------------------------------------------------------------- /docs/public/chunk-24EG6CQZ.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/chunk-24EG6CQZ.min.js -------------------------------------------------------------------------------- /docs/public/chunk-24EG6CQZ.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/chunk-24EG6CQZ.min.js.map -------------------------------------------------------------------------------- /docs/public/chunk-2TAJJIOM.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/chunk-2TAJJIOM.min.js -------------------------------------------------------------------------------- /docs/public/chunk-2TAJJIOM.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/chunk-2TAJJIOM.min.js.map -------------------------------------------------------------------------------- /docs/public/chunk-2YMHYP32.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/chunk-2YMHYP32.min.js -------------------------------------------------------------------------------- /docs/public/chunk-2YMHYP32.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/chunk-2YMHYP32.min.js.map -------------------------------------------------------------------------------- /docs/public/chunk-3Z74ZUXG.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/chunk-3Z74ZUXG.min.js -------------------------------------------------------------------------------- /docs/public/chunk-3Z74ZUXG.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/chunk-3Z74ZUXG.min.js.map -------------------------------------------------------------------------------- /docs/public/chunk-45RMNOPF.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/chunk-45RMNOPF.min.js -------------------------------------------------------------------------------- /docs/public/chunk-45RMNOPF.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/chunk-45RMNOPF.min.js.map -------------------------------------------------------------------------------- /docs/public/chunk-53EALYMI.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/chunk-53EALYMI.min.js -------------------------------------------------------------------------------- /docs/public/chunk-53EALYMI.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/chunk-53EALYMI.min.js.map -------------------------------------------------------------------------------- /docs/public/chunk-5KKNARB2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/chunk-5KKNARB2.min.js -------------------------------------------------------------------------------- /docs/public/chunk-5KKNARB2.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/chunk-5KKNARB2.min.js.map -------------------------------------------------------------------------------- /docs/public/chunk-7JZIB2XU.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/chunk-7JZIB2XU.min.js -------------------------------------------------------------------------------- /docs/public/chunk-7JZIB2XU.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/chunk-7JZIB2XU.min.js.map -------------------------------------------------------------------------------- /docs/public/chunk-B5WF4DA4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/chunk-B5WF4DA4.min.js -------------------------------------------------------------------------------- /docs/public/chunk-B5WF4DA4.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/chunk-B5WF4DA4.min.js.map -------------------------------------------------------------------------------- /docs/public/chunk-CIWIECNU.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/chunk-CIWIECNU.min.js -------------------------------------------------------------------------------- /docs/public/chunk-CIWIECNU.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/chunk-CIWIECNU.min.js.map -------------------------------------------------------------------------------- /docs/public/chunk-CM5D5KZN.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/chunk-CM5D5KZN.min.js -------------------------------------------------------------------------------- /docs/public/chunk-CM5D5KZN.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/chunk-CM5D5KZN.min.js.map -------------------------------------------------------------------------------- /docs/public/chunk-CXRPJJJE.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/chunk-CXRPJJJE.min.js -------------------------------------------------------------------------------- /docs/public/chunk-CXRPJJJE.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/chunk-CXRPJJJE.min.js.map -------------------------------------------------------------------------------- /docs/public/chunk-DBPRPEV6.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/chunk-DBPRPEV6.min.js -------------------------------------------------------------------------------- /docs/public/chunk-DBPRPEV6.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/chunk-DBPRPEV6.min.js.map -------------------------------------------------------------------------------- /docs/public/chunk-DFMVIMQJ.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/chunk-DFMVIMQJ.min.js -------------------------------------------------------------------------------- /docs/public/chunk-DFMVIMQJ.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/chunk-DFMVIMQJ.min.js.map -------------------------------------------------------------------------------- /docs/public/chunk-DTUU2GN4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/chunk-DTUU2GN4.min.js -------------------------------------------------------------------------------- /docs/public/chunk-DTUU2GN4.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/chunk-DTUU2GN4.min.js.map -------------------------------------------------------------------------------- /docs/public/chunk-DXUQFVLL.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/chunk-DXUQFVLL.min.js -------------------------------------------------------------------------------- /docs/public/chunk-DXUQFVLL.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/chunk-DXUQFVLL.min.js.map -------------------------------------------------------------------------------- /docs/public/chunk-HOCACIQT.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/chunk-HOCACIQT.min.js -------------------------------------------------------------------------------- /docs/public/chunk-HOCACIQT.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/chunk-HOCACIQT.min.js.map -------------------------------------------------------------------------------- /docs/public/chunk-IQQ46AC6.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/chunk-IQQ46AC6.min.js -------------------------------------------------------------------------------- /docs/public/chunk-IQQ46AC6.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/chunk-IQQ46AC6.min.js.map -------------------------------------------------------------------------------- /docs/public/chunk-K7PO6CNQ.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/chunk-K7PO6CNQ.min.js -------------------------------------------------------------------------------- /docs/public/chunk-K7PO6CNQ.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/chunk-K7PO6CNQ.min.js.map -------------------------------------------------------------------------------- /docs/public/chunk-KF4CENUX.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/chunk-KF4CENUX.min.js -------------------------------------------------------------------------------- /docs/public/chunk-KF4CENUX.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/chunk-KF4CENUX.min.js.map -------------------------------------------------------------------------------- /docs/public/chunk-LDPOAEOH.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/chunk-LDPOAEOH.min.js -------------------------------------------------------------------------------- /docs/public/chunk-LDPOAEOH.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/chunk-LDPOAEOH.min.js.map -------------------------------------------------------------------------------- /docs/public/chunk-MJXJ7UGT.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/chunk-MJXJ7UGT.min.js -------------------------------------------------------------------------------- /docs/public/chunk-MJXJ7UGT.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/chunk-MJXJ7UGT.min.js.map -------------------------------------------------------------------------------- /docs/public/chunk-NRRWWJ3P.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/chunk-NRRWWJ3P.min.js -------------------------------------------------------------------------------- /docs/public/chunk-NRRWWJ3P.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/chunk-NRRWWJ3P.min.js.map -------------------------------------------------------------------------------- /docs/public/chunk-OSRY5VT3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/chunk-OSRY5VT3.min.js -------------------------------------------------------------------------------- /docs/public/chunk-OSRY5VT3.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/chunk-OSRY5VT3.min.js.map -------------------------------------------------------------------------------- /docs/public/chunk-P2C2SEUI.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/chunk-P2C2SEUI.min.js -------------------------------------------------------------------------------- /docs/public/chunk-P2C2SEUI.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/chunk-P2C2SEUI.min.js.map -------------------------------------------------------------------------------- /docs/public/chunk-PYBRKFQJ.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/chunk-PYBRKFQJ.min.js -------------------------------------------------------------------------------- /docs/public/chunk-PYBRKFQJ.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/chunk-PYBRKFQJ.min.js.map -------------------------------------------------------------------------------- /docs/public/chunk-R7DHUQMU.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/chunk-R7DHUQMU.min.js -------------------------------------------------------------------------------- /docs/public/chunk-R7DHUQMU.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/chunk-R7DHUQMU.min.js.map -------------------------------------------------------------------------------- /docs/public/chunk-TERFBH2B.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/chunk-TERFBH2B.min.js -------------------------------------------------------------------------------- /docs/public/chunk-TERFBH2B.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/chunk-TERFBH2B.min.js.map -------------------------------------------------------------------------------- /docs/public/chunk-TOQ6ACLX.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/chunk-TOQ6ACLX.min.js -------------------------------------------------------------------------------- /docs/public/chunk-TOQ6ACLX.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/chunk-TOQ6ACLX.min.js.map -------------------------------------------------------------------------------- /docs/public/chunk-U4DUTLYF.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/chunk-U4DUTLYF.min.js -------------------------------------------------------------------------------- /docs/public/chunk-U4DUTLYF.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/chunk-U4DUTLYF.min.js.map -------------------------------------------------------------------------------- /docs/public/chunk-UOD6J27N.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/chunk-UOD6J27N.min.js -------------------------------------------------------------------------------- /docs/public/chunk-UOD6J27N.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/chunk-UOD6J27N.min.js.map -------------------------------------------------------------------------------- /docs/public/chunk-WMZJ2DJX.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/chunk-WMZJ2DJX.min.js -------------------------------------------------------------------------------- /docs/public/chunk-WMZJ2DJX.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/chunk-WMZJ2DJX.min.js.map -------------------------------------------------------------------------------- /docs/public/chunk-XBNRW4G3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/chunk-XBNRW4G3.min.js -------------------------------------------------------------------------------- /docs/public/chunk-XBNRW4G3.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/chunk-XBNRW4G3.min.js.map -------------------------------------------------------------------------------- /docs/public/chunk-ZU5APUIQ.min.js: -------------------------------------------------------------------------------- 1 | var r="11.4.0";export{r as a}; 2 | //# sourceMappingURL=chunk-ZU5APUIQ.min.js.map 3 | -------------------------------------------------------------------------------- /docs/public/chunk-ZU5APUIQ.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/chunk-ZU5APUIQ.min.js.map -------------------------------------------------------------------------------- /docs/public/classDiagram-FEGYTUDG-YCLVHNZU.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/classDiagram-FEGYTUDG-YCLVHNZU.min.js -------------------------------------------------------------------------------- /docs/public/classDiagram-FEGYTUDG-YCLVHNZU.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/classDiagram-FEGYTUDG-YCLVHNZU.min.js.map -------------------------------------------------------------------------------- /docs/public/classDiagram-v2-R65JCUOM-VFGJ2XXK.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/classDiagram-v2-R65JCUOM-VFGJ2XXK.min.js -------------------------------------------------------------------------------- /docs/public/classDiagram-v2-R65JCUOM-VFGJ2XXK.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/classDiagram-v2-R65JCUOM-VFGJ2XXK.min.js.map -------------------------------------------------------------------------------- /docs/public/dagre-SWNTG5WE-7BA3SWK2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/dagre-SWNTG5WE-7BA3SWK2.min.js -------------------------------------------------------------------------------- /docs/public/dagre-SWNTG5WE-7BA3SWK2.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/dagre-SWNTG5WE-7BA3SWK2.min.js.map -------------------------------------------------------------------------------- /docs/public/diagram-NZMEDLQF-NYTRB6HN.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/diagram-NZMEDLQF-NYTRB6HN.min.js -------------------------------------------------------------------------------- /docs/public/diagram-NZMEDLQF-NYTRB6HN.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/diagram-NZMEDLQF-NYTRB6HN.min.js.map -------------------------------------------------------------------------------- /docs/public/docfx.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/docfx.min.css -------------------------------------------------------------------------------- /docs/public/docfx.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/docfx.min.css.map -------------------------------------------------------------------------------- /docs/public/docfx.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/docfx.min.js -------------------------------------------------------------------------------- /docs/public/docfx.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/docfx.min.js.map -------------------------------------------------------------------------------- /docs/public/erDiagram-WO52GFNT-Y4NFVIDE.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/erDiagram-WO52GFNT-Y4NFVIDE.min.js -------------------------------------------------------------------------------- /docs/public/erDiagram-WO52GFNT-Y4NFVIDE.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/erDiagram-WO52GFNT-Y4NFVIDE.min.js.map -------------------------------------------------------------------------------- /docs/public/es-4I4X6RME.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/es-4I4X6RME.min.js -------------------------------------------------------------------------------- /docs/public/es-4I4X6RME.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/es-4I4X6RME.min.js.map -------------------------------------------------------------------------------- /docs/public/flowDiagram-TSWR6T2D-H32UQL2W.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/flowDiagram-TSWR6T2D-H32UQL2W.min.js -------------------------------------------------------------------------------- /docs/public/flowDiagram-TSWR6T2D-H32UQL2W.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/flowDiagram-TSWR6T2D-H32UQL2W.min.js.map -------------------------------------------------------------------------------- /docs/public/ganttDiagram-FAOCOTIY-GFLLTKXL.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/ganttDiagram-FAOCOTIY-GFLLTKXL.min.js -------------------------------------------------------------------------------- /docs/public/ganttDiagram-FAOCOTIY-GFLLTKXL.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/ganttDiagram-FAOCOTIY-GFLLTKXL.min.js.map -------------------------------------------------------------------------------- /docs/public/gitGraph-YCYPL57B-C4NBXIBD.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/gitGraph-YCYPL57B-C4NBXIBD.min.js -------------------------------------------------------------------------------- /docs/public/gitGraph-YCYPL57B-C4NBXIBD.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/gitGraph-YCYPL57B-C4NBXIBD.min.js.map -------------------------------------------------------------------------------- /docs/public/gitGraphDiagram-5C7YHVU6-2F4DKEGL.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/gitGraphDiagram-5C7YHVU6-2F4DKEGL.min.js -------------------------------------------------------------------------------- /docs/public/gitGraphDiagram-5C7YHVU6-2F4DKEGL.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/gitGraphDiagram-5C7YHVU6-2F4DKEGL.min.js.map -------------------------------------------------------------------------------- /docs/public/info-46DW6VJ7-MWRO75OW.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/info-46DW6VJ7-MWRO75OW.min.js -------------------------------------------------------------------------------- /docs/public/info-46DW6VJ7-MWRO75OW.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/info-46DW6VJ7-MWRO75OW.min.js.map -------------------------------------------------------------------------------- /docs/public/infoDiagram-P5D6MX3V-EFUDKNDH.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/infoDiagram-P5D6MX3V-EFUDKNDH.min.js -------------------------------------------------------------------------------- /docs/public/infoDiagram-P5D6MX3V-EFUDKNDH.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/infoDiagram-P5D6MX3V-EFUDKNDH.min.js.map -------------------------------------------------------------------------------- /docs/public/journeyDiagram-UIGPPNLY-FB6FUBJH.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/journeyDiagram-UIGPPNLY-FB6FUBJH.min.js -------------------------------------------------------------------------------- /docs/public/journeyDiagram-UIGPPNLY-FB6FUBJH.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/journeyDiagram-UIGPPNLY-FB6FUBJH.min.js.map -------------------------------------------------------------------------------- /docs/public/kanban-definition-KMT3NSR2-K4PM5M4E.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/kanban-definition-KMT3NSR2-K4PM5M4E.min.js -------------------------------------------------------------------------------- /docs/public/kanban-definition-KMT3NSR2-K4PM5M4E.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/kanban-definition-KMT3NSR2-K4PM5M4E.min.js.map -------------------------------------------------------------------------------- /docs/public/katex-NVDEX37K.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/katex-NVDEX37K.min.js -------------------------------------------------------------------------------- /docs/public/katex-NVDEX37K.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/katex-NVDEX37K.min.js.map -------------------------------------------------------------------------------- /docs/public/lunr.ar-A6ZT2INA.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/lunr.ar-A6ZT2INA.min.js -------------------------------------------------------------------------------- /docs/public/lunr.ar-A6ZT2INA.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/lunr.ar-A6ZT2INA.min.js.map -------------------------------------------------------------------------------- /docs/public/lunr.da-WWM276CR.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/lunr.da-WWM276CR.min.js -------------------------------------------------------------------------------- /docs/public/lunr.da-WWM276CR.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/lunr.da-WWM276CR.min.js.map -------------------------------------------------------------------------------- /docs/public/lunr.de-XXPRKDAY.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/lunr.de-XXPRKDAY.min.js -------------------------------------------------------------------------------- /docs/public/lunr.de-XXPRKDAY.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/lunr.de-XXPRKDAY.min.js.map -------------------------------------------------------------------------------- /docs/public/lunr.du-NO4L2LL3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/lunr.du-NO4L2LL3.min.js -------------------------------------------------------------------------------- /docs/public/lunr.du-NO4L2LL3.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/lunr.du-NO4L2LL3.min.js.map -------------------------------------------------------------------------------- /docs/public/lunr.el-5ZSSJVMA.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/lunr.el-5ZSSJVMA.min.js -------------------------------------------------------------------------------- /docs/public/lunr.el-5ZSSJVMA.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/lunr.el-5ZSSJVMA.min.js.map -------------------------------------------------------------------------------- /docs/public/lunr.es-ZH6Q76E6.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/lunr.es-ZH6Q76E6.min.js -------------------------------------------------------------------------------- /docs/public/lunr.es-ZH6Q76E6.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/lunr.es-ZH6Q76E6.min.js.map -------------------------------------------------------------------------------- /docs/public/lunr.fi-S7WJSBCP.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/lunr.fi-S7WJSBCP.min.js -------------------------------------------------------------------------------- /docs/public/lunr.fi-S7WJSBCP.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/lunr.fi-S7WJSBCP.min.js.map -------------------------------------------------------------------------------- /docs/public/lunr.fr-H2QNBELV.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/lunr.fr-H2QNBELV.min.js -------------------------------------------------------------------------------- /docs/public/lunr.fr-H2QNBELV.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/lunr.fr-H2QNBELV.min.js.map -------------------------------------------------------------------------------- /docs/public/lunr.he-TTLAK4MN.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/lunr.he-TTLAK4MN.min.js -------------------------------------------------------------------------------- /docs/public/lunr.he-TTLAK4MN.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/lunr.he-TTLAK4MN.min.js.map -------------------------------------------------------------------------------- /docs/public/lunr.hi-PWWMAGLU.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/lunr.hi-PWWMAGLU.min.js -------------------------------------------------------------------------------- /docs/public/lunr.hi-PWWMAGLU.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/lunr.hi-PWWMAGLU.min.js.map -------------------------------------------------------------------------------- /docs/public/lunr.hu-DLG2DSVM.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/lunr.hu-DLG2DSVM.min.js -------------------------------------------------------------------------------- /docs/public/lunr.hu-DLG2DSVM.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/lunr.hu-DLG2DSVM.min.js.map -------------------------------------------------------------------------------- /docs/public/lunr.hy-FFQJAR7M.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/lunr.hy-FFQJAR7M.min.js -------------------------------------------------------------------------------- /docs/public/lunr.hy-FFQJAR7M.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/lunr.hy-FFQJAR7M.min.js.map -------------------------------------------------------------------------------- /docs/public/lunr.it-VQNLJLPR.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/lunr.it-VQNLJLPR.min.js -------------------------------------------------------------------------------- /docs/public/lunr.it-VQNLJLPR.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/lunr.it-VQNLJLPR.min.js.map -------------------------------------------------------------------------------- /docs/public/lunr.ja-J6QHZSR2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/lunr.ja-J6QHZSR2.min.js -------------------------------------------------------------------------------- /docs/public/lunr.ja-J6QHZSR2.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/lunr.ja-J6QHZSR2.min.js.map -------------------------------------------------------------------------------- /docs/public/lunr.jp-M45D3XJE.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/lunr.jp-M45D3XJE.min.js -------------------------------------------------------------------------------- /docs/public/lunr.jp-M45D3XJE.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/lunr.jp-M45D3XJE.min.js.map -------------------------------------------------------------------------------- /docs/public/lunr.kn-ASLXFRTC.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/lunr.kn-ASLXFRTC.min.js -------------------------------------------------------------------------------- /docs/public/lunr.kn-ASLXFRTC.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/lunr.kn-ASLXFRTC.min.js.map -------------------------------------------------------------------------------- /docs/public/lunr.ko-RHF2BDE4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/lunr.ko-RHF2BDE4.min.js -------------------------------------------------------------------------------- /docs/public/lunr.ko-RHF2BDE4.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/lunr.ko-RHF2BDE4.min.js.map -------------------------------------------------------------------------------- /docs/public/lunr.nl-2BITG354.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/lunr.nl-2BITG354.min.js -------------------------------------------------------------------------------- /docs/public/lunr.nl-2BITG354.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/lunr.nl-2BITG354.min.js.map -------------------------------------------------------------------------------- /docs/public/lunr.no-WPLSHWFO.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/lunr.no-WPLSHWFO.min.js -------------------------------------------------------------------------------- /docs/public/lunr.no-WPLSHWFO.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/lunr.no-WPLSHWFO.min.js.map -------------------------------------------------------------------------------- /docs/public/lunr.pt-V2XEBELC.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/lunr.pt-V2XEBELC.min.js -------------------------------------------------------------------------------- /docs/public/lunr.pt-V2XEBELC.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/lunr.pt-V2XEBELC.min.js.map -------------------------------------------------------------------------------- /docs/public/lunr.ro-O76266FJ.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/lunr.ro-O76266FJ.min.js -------------------------------------------------------------------------------- /docs/public/lunr.ro-O76266FJ.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/lunr.ro-O76266FJ.min.js.map -------------------------------------------------------------------------------- /docs/public/lunr.ru-G56UDXYH.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/lunr.ru-G56UDXYH.min.js -------------------------------------------------------------------------------- /docs/public/lunr.ru-G56UDXYH.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/lunr.ru-G56UDXYH.min.js.map -------------------------------------------------------------------------------- /docs/public/lunr.sa-LD5PRAIS.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/lunr.sa-LD5PRAIS.min.js -------------------------------------------------------------------------------- /docs/public/lunr.sa-LD5PRAIS.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/lunr.sa-LD5PRAIS.min.js.map -------------------------------------------------------------------------------- /docs/public/lunr.sv-7VRY4UDB.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/lunr.sv-7VRY4UDB.min.js -------------------------------------------------------------------------------- /docs/public/lunr.sv-7VRY4UDB.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/lunr.sv-7VRY4UDB.min.js.map -------------------------------------------------------------------------------- /docs/public/lunr.ta-OWB7AURB.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/lunr.ta-OWB7AURB.min.js -------------------------------------------------------------------------------- /docs/public/lunr.ta-OWB7AURB.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/lunr.ta-OWB7AURB.min.js.map -------------------------------------------------------------------------------- /docs/public/lunr.te-JGGL3BFP.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/lunr.te-JGGL3BFP.min.js -------------------------------------------------------------------------------- /docs/public/lunr.te-JGGL3BFP.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/lunr.te-JGGL3BFP.min.js.map -------------------------------------------------------------------------------- /docs/public/lunr.th-O4JBL3IY.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/lunr.th-O4JBL3IY.min.js -------------------------------------------------------------------------------- /docs/public/lunr.th-O4JBL3IY.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/lunr.th-O4JBL3IY.min.js.map -------------------------------------------------------------------------------- /docs/public/lunr.tr-WXUV733C.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/lunr.tr-WXUV733C.min.js -------------------------------------------------------------------------------- /docs/public/lunr.tr-WXUV733C.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/lunr.tr-WXUV733C.min.js.map -------------------------------------------------------------------------------- /docs/public/lunr.vi-3U4A337N.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/lunr.vi-3U4A337N.min.js -------------------------------------------------------------------------------- /docs/public/lunr.vi-3U4A337N.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/lunr.vi-3U4A337N.min.js.map -------------------------------------------------------------------------------- /docs/public/main.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/public/main.js: -------------------------------------------------------------------------------- 1 | export default {} 2 | -------------------------------------------------------------------------------- /docs/public/mermaid.core-RYVCAQML.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/mermaid.core-RYVCAQML.min.js -------------------------------------------------------------------------------- /docs/public/mermaid.core-RYVCAQML.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/mermaid.core-RYVCAQML.min.js.map -------------------------------------------------------------------------------- /docs/public/mindmap-definition-R7LC4OIY-2USVTKSJ.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/mindmap-definition-R7LC4OIY-2USVTKSJ.min.js -------------------------------------------------------------------------------- /docs/public/mindmap-definition-R7LC4OIY-2USVTKSJ.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/mindmap-definition-R7LC4OIY-2USVTKSJ.min.js.map -------------------------------------------------------------------------------- /docs/public/packet-W2GHVCYJ-73RTG6VT.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/packet-W2GHVCYJ-73RTG6VT.min.js -------------------------------------------------------------------------------- /docs/public/packet-W2GHVCYJ-73RTG6VT.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/packet-W2GHVCYJ-73RTG6VT.min.js.map -------------------------------------------------------------------------------- /docs/public/pie-BEWT4RHE-6E5EOTAQ.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/pie-BEWT4RHE-6E5EOTAQ.min.js -------------------------------------------------------------------------------- /docs/public/pie-BEWT4RHE-6E5EOTAQ.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/pie-BEWT4RHE-6E5EOTAQ.min.js.map -------------------------------------------------------------------------------- /docs/public/pieDiagram-BLWKPB35-RRRLPZVM.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/pieDiagram-BLWKPB35-RRRLPZVM.min.js -------------------------------------------------------------------------------- /docs/public/pieDiagram-BLWKPB35-RRRLPZVM.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/pieDiagram-BLWKPB35-RRRLPZVM.min.js.map -------------------------------------------------------------------------------- /docs/public/quadrantDiagram-QXWEEFXS-PKSQMH6W.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/quadrantDiagram-QXWEEFXS-PKSQMH6W.min.js -------------------------------------------------------------------------------- /docs/public/quadrantDiagram-QXWEEFXS-PKSQMH6W.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/quadrantDiagram-QXWEEFXS-PKSQMH6W.min.js.map -------------------------------------------------------------------------------- /docs/public/requirementDiagram-XAUNFCZY-5ZWIDLT6.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/requirementDiagram-XAUNFCZY-5ZWIDLT6.min.js -------------------------------------------------------------------------------- /docs/public/requirementDiagram-XAUNFCZY-5ZWIDLT6.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/requirementDiagram-XAUNFCZY-5ZWIDLT6.min.js.map -------------------------------------------------------------------------------- /docs/public/sankeyDiagram-LVV36NHA-T6DVYUKQ.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/sankeyDiagram-LVV36NHA-T6DVYUKQ.min.js -------------------------------------------------------------------------------- /docs/public/sankeyDiagram-LVV36NHA-T6DVYUKQ.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/sankeyDiagram-LVV36NHA-T6DVYUKQ.min.js.map -------------------------------------------------------------------------------- /docs/public/search-worker.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/search-worker.min.js -------------------------------------------------------------------------------- /docs/public/search-worker.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/search-worker.min.js.map -------------------------------------------------------------------------------- /docs/public/sequenceDiagram-D25TJ2OB-6R64PNA2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/sequenceDiagram-D25TJ2OB-6R64PNA2.min.js -------------------------------------------------------------------------------- /docs/public/sequenceDiagram-D25TJ2OB-6R64PNA2.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/sequenceDiagram-D25TJ2OB-6R64PNA2.min.js.map -------------------------------------------------------------------------------- /docs/public/stateDiagram-GNSP7T6Y-QRHXVCK2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/stateDiagram-GNSP7T6Y-QRHXVCK2.min.js -------------------------------------------------------------------------------- /docs/public/stateDiagram-GNSP7T6Y-QRHXVCK2.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/stateDiagram-GNSP7T6Y-QRHXVCK2.min.js.map -------------------------------------------------------------------------------- /docs/public/stateDiagram-v2-HP6YRVRG-XMVPP43U.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/stateDiagram-v2-HP6YRVRG-XMVPP43U.min.js -------------------------------------------------------------------------------- /docs/public/stateDiagram-v2-HP6YRVRG-XMVPP43U.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/stateDiagram-v2-HP6YRVRG-XMVPP43U.min.js.map -------------------------------------------------------------------------------- /docs/public/tex-svg-full-SL33OL2J.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/tex-svg-full-SL33OL2J.min.js -------------------------------------------------------------------------------- /docs/public/tex-svg-full-SL33OL2J.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/tex-svg-full-SL33OL2J.min.js.map -------------------------------------------------------------------------------- /docs/public/timeline-definition-27KQCCZ3-MKUJTCR4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/timeline-definition-27KQCCZ3-MKUJTCR4.min.js -------------------------------------------------------------------------------- /docs/public/timeline-definition-27KQCCZ3-MKUJTCR4.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/timeline-definition-27KQCCZ3-MKUJTCR4.min.js.map -------------------------------------------------------------------------------- /docs/public/xychartDiagram-MYLB5AYS-IFQ4BEB4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/xychartDiagram-MYLB5AYS-IFQ4BEB4.min.js -------------------------------------------------------------------------------- /docs/public/xychartDiagram-MYLB5AYS-IFQ4BEB4.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/public/xychartDiagram-MYLB5AYS-IFQ4BEB4.min.js.map -------------------------------------------------------------------------------- /docs/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/toc.html -------------------------------------------------------------------------------- /docs/toc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/toc.json -------------------------------------------------------------------------------- /docs/xrefmap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csf-dev/CSF.Screenplay/HEAD/docs/xrefmap.yml --------------------------------------------------------------------------------