├── .editorconfig ├── .gitattributes ├── .github └── workflows │ ├── dotnetcore-pull.yml │ └── dotnetcore.yml ├── .gitignore ├── Analysis.ruleset ├── AutoStep.sln ├── Directory.Build.props ├── GitVersion.yml ├── LICENSE ├── README.md ├── docs ├── .gitignore ├── api │ └── index.md ├── design │ ├── InteractionLanguage.md │ ├── index.md │ └── toc.yml ├── docfx.json ├── filter.yml ├── globalMetadata.json ├── images │ └── logo.png ├── index.md ├── toc.yml └── writing-tests │ ├── intro.md │ └── toc.yml ├── src └── AutoStep │ ├── ArgumentType.cs │ ├── AssemblyInfo.cs │ ├── AssertExtensions.cs │ ├── Assertion │ └── AssertionException.cs │ ├── AutoStep.csproj │ ├── CallbackDefinitionExtensions.cs │ ├── Configuration │ ├── ConfigurationExtensions.cs │ ├── ConfigurationExtensionsMessages.Designer.cs │ ├── ConfigurationExtensionsMessages.resx │ └── ProjectConfigurationException.cs │ ├── Definitions │ ├── ArgumentBindingException.cs │ ├── DefinitionsMessages.Designer.cs │ ├── DefinitionsMessages.resx │ ├── DocumentationHelper.cs │ ├── IStepDefinitionSource.cs │ ├── IUpdatableStepDefinitionSource.cs │ ├── Interaction │ │ ├── ClassBackedInteractionMethod.cs │ │ ├── DefinedInteractionMethod.cs │ │ ├── DelegateInteractionMethod.cs │ │ ├── FileDefinedInteractionMethod.cs │ │ ├── InteractionMethod.cs │ │ ├── InteractionStepDefinition.cs │ │ └── InteractionStepDefinitionSource.cs │ ├── StepDefinition.cs │ ├── StepTableRequirement.cs │ └── Test │ │ ├── AssemblyStepDefinitionSource.cs │ │ ├── CallbackDefinitionSource.cs │ │ ├── ClassBackedStepDefinitionSource.cs │ │ ├── ClassStepDefinition.cs │ │ ├── ClassStepDefinitionSource.cs │ │ ├── DelegateBackedStepDefinition.cs │ │ ├── FileStepDefinition.cs │ │ ├── FileStepDefinitionSource.cs │ │ └── MethodBackedStepDefinition.cs │ ├── DependencyRegistrationExtensions.cs │ ├── Elements │ ├── AnnotationElement.cs │ ├── BuiltElement.cs │ ├── Interaction │ │ ├── ComponentDefinitionElement.cs │ │ ├── ConstantMethodArgumentElement.cs │ │ ├── ElementExceptionMessages.Designer.cs │ │ ├── ElementExceptionMessages.resx │ │ ├── FloatMethodArgumentElement.cs │ │ ├── ICallChainSource.cs │ │ ├── IntMethodArgumentElement.cs │ │ ├── InteractionDefinitionElement.cs │ │ ├── InteractionFileElement.cs │ │ ├── InteractionStepDefinitionElement.cs │ │ ├── InteractionStepSignature.cs │ │ ├── MethodArgumentElement.cs │ │ ├── MethodCallElement.cs │ │ ├── MethodDefinitionArgumentElement.cs │ │ ├── MethodDefinitionElement.cs │ │ ├── NameRefElement.cs │ │ ├── StringMethodArgumentElement.cs │ │ ├── TraitDefinitionElement.cs │ │ ├── VariableArrayRefMethodArgument.cs │ │ └── VariableRefMethodArgumentElement.cs │ ├── Metadata │ │ ├── IAnnotationInfo.cs │ │ ├── IBackgroundInfo.cs │ │ ├── IElementInfo.cs │ │ ├── IExampleInfo.cs │ │ ├── IFeatureInfo.cs │ │ ├── IMethodCallArgumentInfo.cs │ │ ├── IMethodCallInfo.cs │ │ ├── IOptionInfo.cs │ │ ├── IPositionalElementInfo.cs │ │ ├── IScenarioInfo.cs │ │ ├── IScenarioOutlineInfo.cs │ │ ├── IStepCollectionInfo.cs │ │ ├── IStepDefinitionInfo.cs │ │ ├── IStepReferenceInfo.cs │ │ ├── ITableCellInfo.cs │ │ ├── ITableHeaderCellInfo.cs │ │ ├── ITableHeaderInfo.cs │ │ ├── ITableInfo.cs │ │ ├── ITableRowInfo.cs │ │ └── ITagInfo.cs │ ├── OptionElement.cs │ ├── Parts │ │ ├── ArgumentPart.cs │ │ ├── DefinitionPart.cs │ │ ├── PlaceholderMatchPart.cs │ │ ├── StepReferenceMatchResult.cs │ │ └── WordDefinitionPart.cs │ ├── PositionalElement.cs │ ├── StepDeclarationSignature.cs │ ├── StepDefinitionElement.cs │ ├── StepTokens │ │ ├── EscapedCharToken.cs │ │ ├── FloatToken.cs │ │ ├── IntToken.cs │ │ ├── InterpolateStartToken.cs │ │ ├── NumericalToken.cs │ │ ├── QuoteToken.cs │ │ ├── StepToken.cs │ │ ├── TextToken.cs │ │ └── VariableToken.cs │ ├── TagElement.cs │ └── Test │ │ ├── BackgroundElement.cs │ │ ├── CodeEntityElement.cs │ │ ├── ElementExceptionMessages.Designer.cs │ │ ├── ElementExceptionMessages.resx │ │ ├── ExampleElement.cs │ │ ├── FeatureElement.cs │ │ ├── FileElement.cs │ │ ├── IAnnotatableElement.cs │ │ ├── ScenarioElement.cs │ │ ├── ScenarioOutlineElement.cs │ │ ├── StepCollectionElement.cs │ │ ├── StepReferenceElement.cs │ │ ├── TableCellElement.cs │ │ ├── TableElement.cs │ │ ├── TableHeaderCellElement.cs │ │ ├── TableHeaderElement.cs │ │ └── TableRowElement.cs │ ├── Execution │ ├── Binding │ │ ├── ArgumentBinderRegistry.cs │ │ ├── DefaultArgumentBinder.cs │ │ └── IArgumentBinder.cs │ ├── CircularStepReferenceException.cs │ ├── Contexts │ │ ├── FeatureContext.cs │ │ ├── FileDefinedStepContext.cs │ │ ├── MethodContext.cs │ │ ├── RunContext.cs │ │ ├── ScenarioContext.cs │ │ ├── StepCollectionContext.cs │ │ ├── StepContext.cs │ │ ├── TestExecutionContext.cs │ │ └── ThreadContext.cs │ ├── Control │ │ ├── BreakResponseInstruction.cs │ │ ├── DefaultExecutionStateManager.cs │ │ ├── HaltResponseInstruction.cs │ │ ├── IExecutionStateManager.cs │ │ └── TestThreadState.cs │ ├── Dependency │ │ ├── ScopeExtensions.cs │ │ └── ScopeTags.cs │ ├── EventHandlingException.cs │ ├── Events │ │ ├── BaseEventHandler.cs │ │ ├── EventPipeline.cs │ │ ├── EventPipelineBuilder.cs │ │ ├── IEventHandler.cs │ │ ├── IEventPipeline.cs │ │ └── IEventPipelineBuilder.cs │ ├── ExecutionText.Designer.cs │ ├── ExecutionText.resx │ ├── FeatureExecutionSet.cs │ ├── IRunFilter.cs │ ├── Interaction │ │ ├── CircularInteractionMethodException.cs │ │ └── MethodChainInvocationExtensions.cs │ ├── InteractionVariables.cs │ ├── Logging │ │ ├── CapturingLogFactory.cs │ │ ├── CapturingLogger.cs │ │ ├── ContextScopeProvider.cs │ │ ├── IContextScopeProvider.cs │ │ ├── LogConsumer.cs │ │ ├── LogEntry.cs │ │ ├── LogEntry{TState}.cs │ │ ├── LoggingMessages.Designer.cs │ │ └── LoggingMessages.resx │ ├── Results │ │ ├── ExportableResultsCollector.cs │ │ ├── ExportableResultsCollectorMessages.Designer.cs │ │ ├── ExportableResultsCollectorMessages.resx │ │ ├── FeatureResultData.cs │ │ ├── IFeatureResult.cs │ │ ├── IResultsExporter.cs │ │ ├── IRunResultSet.cs │ │ ├── IScenarioInvocationResult.cs │ │ ├── IScenarioResult.cs │ │ ├── ResultsCollector.cs │ │ ├── ScenarioInvocationResultData.cs │ │ ├── ScenarioResultData.cs │ │ ├── WorkingResultSet.cs │ │ ├── WorkingResultSetMessages.Designer.cs │ │ └── WorkingResultSetMessages.resx │ ├── RunAllFilter.cs │ ├── StepFailureException.cs │ ├── Strategy │ │ ├── DefaultFeatureExecutionStrategy.cs │ │ ├── DefaultRunExecutionStrategy.cs │ │ ├── DefaultScenarioExecutionStrategy.cs │ │ ├── DefaultStepCollectionExecutionStrategy.cs │ │ ├── DefaultStepExecutionStrategy.cs │ │ ├── IFeatureExecutionStrategy.cs │ │ ├── IRunExecutionStrategy.cs │ │ ├── IScenarioExecutionStrategy.cs │ │ ├── IStepCollectionExecutionStrategy.cs │ │ ├── IStepExecutionStrategy.cs │ │ ├── StrategyMessages.Designer.cs │ │ └── StrategyMessages.resx │ ├── TableVariableSet.cs │ ├── TestRun.cs │ ├── TestRunExtensions.cs │ ├── TokenBindingExtensions.cs │ ├── UnboundStepException.cs │ ├── VariableSet.cs │ └── VariableSetBase.cs │ ├── GivenAttribute.cs │ ├── InteractionMethodAttribute.cs │ ├── InteractionMethodExtensions.cs │ ├── InteractionsConfigurationExtensions.cs │ ├── Language │ ├── BaseErrorHandlingContext.cs │ ├── CompilerDiagnosticException.cs │ ├── CompilerMessageCode.cs │ ├── CompilerMessageCodeText.Designer.cs │ ├── CompilerMessageCodeText.resx │ ├── CompilerMessageLevel.cs │ ├── CompilerMessageSet.cs │ ├── IContentSource.cs │ ├── ILineTokeniser.cs │ ├── Interaction │ │ ├── BuiltComponent.cs │ │ ├── CallChainCompileTimeVariables.cs │ │ ├── CallChainSeparationException.cs │ │ ├── CompilerLogMessages.Designer.cs │ │ ├── CompilerLogMessages.resx │ │ ├── ComponentResolutionData.cs │ │ ├── DefaultCallChainValidator.cs │ │ ├── ExtendedMethodTableReferences.cs │ │ ├── ICallChainValidator.cs │ │ ├── IExtendedMethodTableReferences.cs │ │ ├── IInteractionCompiler.cs │ │ ├── IInteractionSet.cs │ │ ├── IInteractionSetBuilder.cs │ │ ├── IInteractionsConfiguration.cs │ │ ├── InteractionCompiler.cs │ │ ├── InteractionConstantSet.cs │ │ ├── InteractionErrorStrategy.cs │ │ ├── InteractionSet.cs │ │ ├── InteractionSetBuilder.cs │ │ ├── InteractionSetBuilderResult.cs │ │ ├── InteractionsCompilerOptions.cs │ │ ├── InteractionsErrorHandlingContext.cs │ │ ├── InteractionsErrorListener.cs │ │ ├── InteractionsFileCompilerResult.cs │ │ ├── InteractionsFileSetBuildResult.cs │ │ ├── InteractionsParserDiagnosticExtensions.cs │ │ ├── LineTokeniser │ │ │ ├── InteractionLineTokeniser.cs │ │ │ └── InteractionStepDefineLineVisitor.cs │ │ ├── MethodTable.cs │ │ ├── Parser │ │ │ ├── AutoStepInteractionsLexer.cs │ │ │ ├── AutoStepInteractionsLexer.g4 │ │ │ ├── AutoStepInteractionsLexer.interp │ │ │ ├── AutoStepInteractionsLexer.tokens │ │ │ ├── AutoStepInteractionsParser.cs │ │ │ ├── AutoStepInteractionsParser.g4 │ │ │ ├── AutoStepInteractionsParser.interp │ │ │ ├── AutoStepInteractionsParser.tokens │ │ │ ├── AutoStepInteractionsParserBaseListener.cs │ │ │ ├── AutoStepInteractionsParserBaseVisitor.cs │ │ │ ├── AutoStepInteractionsParserListener.cs │ │ │ ├── AutoStepInteractionsParserVisitor.cs │ │ │ ├── build-antlr-java.ps1 │ │ │ └── build-antlr.ps1 │ │ ├── RootMethodTable.cs │ │ ├── Traits │ │ │ ├── TraitGraph.cs │ │ │ ├── TraitNameMatchingSet.cs │ │ │ ├── TraitNode.cs │ │ │ └── TraitRef.cs │ │ └── Visitors │ │ │ ├── BaseAutoStepInteractionVisitor.cs │ │ │ ├── ComponentDefinitionVisitor.cs │ │ │ ├── InteractionCallChainDeclarationVisitor.cs │ │ │ ├── InteractionDefinitionVisitor.cs │ │ │ ├── InteractionStepDefinitionVisitor.cs │ │ │ ├── InteractionsFileVisitor.cs │ │ │ ├── MethodDefinitionVisitor.cs │ │ │ └── TraitDefinitionVisitor.cs │ ├── LanguageElementExtensions.cs │ ├── LanguageMessageFactory.cs │ ├── LanguageOperationMessage.cs │ ├── LanguageOperationResult.cs │ ├── LanguageOperationResult{TOutput}.cs │ ├── LineToken.cs │ ├── LineTokenCategory.cs │ ├── LineTokeniseResult.cs │ ├── ParserErrorListener.cs │ ├── Position │ │ ├── IPositionIndex.cs │ │ ├── LineEntry.cs │ │ ├── PositionEntry.cs │ │ ├── PositionIndex.cs │ │ ├── PositionInfo.cs │ │ ├── PositionLineToken.cs │ │ ├── PositionMessages.Designer.cs │ │ └── PositionMessages.resx │ ├── StepPlaceholders.cs │ ├── StringContentSource.cs │ ├── Test │ │ ├── ArgumentBinding.cs │ │ ├── CompilerLogMessages.Designer.cs │ │ ├── CompilerLogMessages.resx │ │ ├── DefaultTestErrorHandling.cs │ │ ├── FileCompilerResult.cs │ │ ├── ILinker.cs │ │ ├── ITestCompiler.cs │ │ ├── LineTokenSubCategory.cs │ │ ├── LineTokeniser │ │ │ ├── LineTokeniserState.cs │ │ │ ├── TestLineTokeniser.cs │ │ │ └── TestLineVisitor.cs │ │ ├── LinkResult.cs │ │ ├── Linker.cs │ │ ├── LinkerMessages.Designer.cs │ │ ├── LinkerMessages.resx │ │ ├── Matching │ │ │ ├── IMatchResult.cs │ │ │ ├── IMatchingTree.cs │ │ │ ├── MatchResult.cs │ │ │ ├── MatchingTree.cs │ │ │ ├── MatchingTreeMessages.Designer.cs │ │ │ ├── MatchingTreeMessages.resx │ │ │ └── MatchingTreeNode.cs │ │ ├── Parser │ │ │ ├── AutoStepLexer.cs │ │ │ ├── AutoStepLexer.g4 │ │ │ ├── AutoStepLexer.interp │ │ │ ├── AutoStepLexer.tokens │ │ │ ├── AutoStepParser.cs │ │ │ ├── AutoStepParser.g4 │ │ │ ├── AutoStepParser.interp │ │ │ ├── AutoStepParser.tokens │ │ │ ├── AutoStepParserBaseListener.cs │ │ │ ├── AutoStepParserBaseVisitor.cs │ │ │ ├── AutoStepParserListener.cs │ │ │ ├── AutoStepParserVisitor.cs │ │ │ ├── build-antlr-java.ps1 │ │ │ └── build-antlr.ps1 │ │ ├── ParserDiagnosticExtensions.cs │ │ ├── StepDefinitionFromBodyResult.cs │ │ ├── StepReferenceBinding.cs │ │ ├── TestCompiler.cs │ │ ├── TestCompilerOptions.cs │ │ ├── TestErrorStrategy.cs │ │ ├── TestParserErrorListener.cs │ │ └── Visitors │ │ │ ├── BaseTestVisitor.cs │ │ │ ├── FileVisitor.cs │ │ │ ├── StepDefinitionVisitor.cs │ │ │ ├── StepReferenceVisitor.cs │ │ │ └── TableVisitor.cs │ ├── TokenStreamExtensions.cs │ ├── TokenStreamExtensionsMessages.Designer.cs │ ├── TokenStreamExtensionsMessages.resx │ └── TokenisedArgumentValue.cs │ ├── LanguageEngineAssertException.cs │ ├── LanguageEngineExceptionMessages.Designer.cs │ ├── LanguageEngineExceptionMessages.resx │ ├── Projects │ ├── Files │ │ ├── FileSet.cs │ │ ├── FileSetEntry.cs │ │ ├── FileSetMessages.Designer.cs │ │ ├── FileSetMessages.resx │ │ ├── IFileSet.cs │ │ ├── IProjectFileFromSet.cs │ │ ├── ProjectFileExtensions.cs │ │ ├── ProjectInteractionFileFromSet.cs │ │ └── ProjectTestFileFromSet.cs │ ├── IProjectBuilder.cs │ ├── PhysicalFileSource.cs │ ├── Project.cs │ ├── ProjectBuilder.cs │ ├── ProjectBuilderMessages.Designer.cs │ ├── ProjectBuilderMessages.resx │ ├── ProjectBuilderResult.cs │ ├── ProjectFile.cs │ ├── ProjectInteractionFile.cs │ ├── ProjectMessages.Designer.cs │ ├── ProjectMessages.resx │ └── ProjectTestFile.cs │ ├── StepDefinitionAttribute.cs │ ├── StepType.cs │ ├── StepsAttribute.cs │ ├── Table.cs │ ├── TableMessages.Designer.cs │ ├── TableMessages.resx │ ├── TableRow.cs │ ├── ThenAttribute.cs │ └── WhenAttribute.cs ├── tests ├── AutoStep.Benchmarks │ ├── AutoStep.Benchmarks.csproj │ ├── BenchmarkConfig.cs │ ├── DefinitionParsingBenchmark.cs │ ├── FullFileBenchmark.cs │ ├── FullFiles │ │ ├── Files.Designer.cs │ │ ├── Files.resx │ │ └── GeneralBenchmark.txt │ ├── MatchingTreeBenchmark.cs │ ├── Program.cs │ └── TraitGraphBenchmarks.cs ├── AutoStep.Language.Tests.DefinedSteps │ ├── AutoStep.Language.Tests.DefinedSteps.csproj │ └── BasicSteps.cs └── AutoStep.Tests │ ├── AutoStep.Tests.csproj │ ├── Builders │ ├── BackgroundBuilder.cs │ ├── BaseBuilder.cs │ ├── CellBuilder.cs │ ├── ExampleBuilder.cs │ ├── FeatureBuilder.cs │ ├── FileBuilder.cs │ ├── IInteractionEntityBuilder.cs │ ├── IStepCollectionBuilder.cs │ ├── InteractionComponentBuilder.cs │ ├── InteractionEntityBuilderExtensions.cs │ ├── InteractionFileBuilder.cs │ ├── InteractionMethodArgumentSetBuilder.cs │ ├── InteractionMethodCallChainBuilder.cs │ ├── InteractionStepDefinitionBuilder.cs │ ├── InteractionStringArgumentBuilder.cs │ ├── InteractionTraitBuilder.cs │ ├── MethodDefinitionBuilder.cs │ ├── ScenarioBuilder.cs │ ├── ScenarioOutlineBuilder.cs │ ├── StepDefinitionBuilder.cs │ ├── StepReferenceBuilder.cs │ ├── TableBuilder.cs │ └── VariableArrayRefBuilder.cs │ ├── Configuration │ └── ConfigurationExtensionTests.cs │ ├── Definition │ ├── Interaction │ │ ├── ClassBackedInteractionMethodTests.cs │ │ └── DelegateInteractionMethodTests.cs │ └── Test │ │ ├── AssemblyStepDefinitionSourceTests.cs │ │ ├── ClassStepDefinitionSourceTests.cs │ │ ├── ClassStepDefinitionTests.cs │ │ ├── DelegateBackedStepDefinitionTests.cs │ │ └── FileStepDefinitionTests.cs │ ├── Elements │ └── Test │ │ ├── FeatureElementTests.cs │ │ └── StepReferenceElementTests.cs │ ├── Execution │ ├── Binding │ │ ├── ArgumentBindingRegistryTests.cs │ │ └── DefaultArgumentBinderTests.cs │ ├── Contexts │ │ └── ExecutionContextTests.cs │ ├── Dependency │ │ ├── RegistrationExtensionTests.cs │ │ └── ScopeExtensionTests.cs │ ├── EndToEndTests.cs │ ├── Events │ │ ├── EventPipelineBuilderTests.cs │ │ └── EventPipelineTests.cs │ ├── FeatureExecutionSetTests.cs │ ├── Interaction │ │ └── MethodChainingTests.cs │ ├── InteractionEndToEndTests.cs │ ├── Logging │ │ ├── CapturingLoggerTests.cs │ │ ├── ContextScopeProviderTests.cs │ │ └── LogConsumerTests.cs │ ├── ProjectMocks.cs │ ├── Results │ │ ├── ExportableResultsCollectorTests.cs │ │ └── ResultsCollectorTests.cs │ ├── Strategy │ │ ├── DefaultFeatureExecutionStrategyTests.cs │ │ ├── DefaultRunExecutionStrategyTests.cs │ │ ├── DefaultScenarioExecutionStrategyTests.cs │ │ ├── DefaultStepCollectionExecutionStrategyTests.cs │ │ └── DefaultStepExecutionStrategyTests.cs │ ├── TestRunTests.cs │ ├── TokenBindingExtensionTests.cs │ └── VariableSetTests.cs │ ├── IssueAttribute.cs │ ├── Language │ ├── EndToEndTests.cs │ ├── FullFiles │ │ ├── Files.Designer.cs │ │ ├── Files.resx │ │ ├── FullInteractionsFile.txt │ │ └── SingleScenarioSimple.txt │ ├── Interaction │ │ ├── AutoStepInteractionSetBuilderTests.cs │ │ ├── DefaultCallChainValidatorTests.cs │ │ ├── FullFileTests.cs │ │ ├── InteractionsConfigurationExtensionsTests.cs │ │ ├── LineTokeniser │ │ │ └── InteractionLineTokeniserTests.cs │ │ ├── Parser │ │ │ ├── ComponentDefinitionTests.cs │ │ │ ├── InteractionStepDefinitionTests.cs │ │ │ ├── MethodCallArgumentTests.cs │ │ │ ├── MethodCallChainTests.cs │ │ │ ├── MethodDefinitionTests.cs │ │ │ └── TraitDefinitionTests.cs │ │ ├── PositionIndexingTests.cs │ │ ├── TraitGraphTests.cs │ │ └── TraitNameMatchingSetTests.cs │ ├── Position │ │ └── PositionIndexTests.cs │ └── Test │ │ ├── LineTokeniser │ │ └── AutoStepLineTokeniserTests.cs │ │ ├── LinkerTests.cs │ │ ├── Matching │ │ ├── ArgumentPartTests.cs │ │ ├── MatchingTreeTests.cs │ │ ├── PlaceholderPartTests.cs │ │ └── WordDefinitionPartTests.cs │ │ ├── Parsing │ │ ├── AnnotationTests.cs │ │ ├── BackgroundTests.cs │ │ ├── DescriptionTests.cs │ │ ├── EndOfFileTests.cs │ │ ├── FeatureTests.cs │ │ ├── FullFileTests.cs │ │ ├── ScenarioOutlineTests.cs │ │ ├── ScenarioTests.cs │ │ ├── StepDefinitionTests.cs │ │ ├── StepTokenTests.cs │ │ └── TableTests.cs │ │ ├── PositionIndexingTests.cs │ │ └── StepDefinitionGenerationTests.cs │ ├── Projects │ ├── ProjectBuilderTests.Interaction.cs │ ├── ProjectBuilderTests.Linker.cs │ ├── ProjectBuilderTests.cs │ ├── ProjectFileTests.cs │ └── ProjectTests.cs │ ├── TableTests.cs │ ├── Utils │ ├── CompilerTestBase.cs │ ├── IAnnotableExtensions.cs │ ├── InteractionsCompilerTestBase.cs │ ├── LineTokenAssertionExtensions.cs │ ├── LoggingTestBase.cs │ ├── PartExtensions.cs │ ├── ProjectFileExtensions.cs │ ├── StepCollectionExtensions.cs │ ├── TestDisposable.cs │ ├── TestLogFactory.cs │ ├── TestLogProvider.cs │ ├── TestLogger.cs │ ├── TestStepDefinitionSource.cs │ └── UpdatableTestStepDefinitionSource.cs │ └── test-cover.ps1 └── tools └── ExtensionMethodsGenerator ├── ExtensionMethodsGenerator.csproj └── Program.cs /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /.github/workflows/dotnetcore-pull.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/.github/workflows/dotnetcore-pull.yml -------------------------------------------------------------------------------- /.github/workflows/dotnetcore.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/.github/workflows/dotnetcore.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/.gitignore -------------------------------------------------------------------------------- /Analysis.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/Analysis.ruleset -------------------------------------------------------------------------------- /AutoStep.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/AutoStep.sln -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /GitVersion.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/GitVersion.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/README.md -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/api/index.md: -------------------------------------------------------------------------------- 1 | # AutoStep API Documentation -------------------------------------------------------------------------------- /docs/design/InteractionLanguage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/docs/design/InteractionLanguage.md -------------------------------------------------------------------------------- /docs/design/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/docs/design/index.md -------------------------------------------------------------------------------- /docs/design/toc.yml: -------------------------------------------------------------------------------- 1 | - name: Design Overview 2 | href: index.md 3 | -------------------------------------------------------------------------------- /docs/docfx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/docs/docfx.json -------------------------------------------------------------------------------- /docs/filter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/docs/filter.yml -------------------------------------------------------------------------------- /docs/globalMetadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/docs/globalMetadata.json -------------------------------------------------------------------------------- /docs/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/docs/images/logo.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/docs/toc.yml -------------------------------------------------------------------------------- /docs/writing-tests/intro.md: -------------------------------------------------------------------------------- 1 | # Writing Tests 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/writing-tests/toc.yml: -------------------------------------------------------------------------------- 1 | - name: Introduction 2 | href: intro.md 3 | -------------------------------------------------------------------------------- /src/AutoStep/ArgumentType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/ArgumentType.cs -------------------------------------------------------------------------------- /src/AutoStep/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/AutoStep/AssertExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/AssertExtensions.cs -------------------------------------------------------------------------------- /src/AutoStep/Assertion/AssertionException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Assertion/AssertionException.cs -------------------------------------------------------------------------------- /src/AutoStep/AutoStep.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/AutoStep.csproj -------------------------------------------------------------------------------- /src/AutoStep/CallbackDefinitionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/CallbackDefinitionExtensions.cs -------------------------------------------------------------------------------- /src/AutoStep/Configuration/ConfigurationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Configuration/ConfigurationExtensions.cs -------------------------------------------------------------------------------- /src/AutoStep/Configuration/ConfigurationExtensionsMessages.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Configuration/ConfigurationExtensionsMessages.Designer.cs -------------------------------------------------------------------------------- /src/AutoStep/Configuration/ConfigurationExtensionsMessages.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Configuration/ConfigurationExtensionsMessages.resx -------------------------------------------------------------------------------- /src/AutoStep/Configuration/ProjectConfigurationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Configuration/ProjectConfigurationException.cs -------------------------------------------------------------------------------- /src/AutoStep/Definitions/ArgumentBindingException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Definitions/ArgumentBindingException.cs -------------------------------------------------------------------------------- /src/AutoStep/Definitions/DefinitionsMessages.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Definitions/DefinitionsMessages.Designer.cs -------------------------------------------------------------------------------- /src/AutoStep/Definitions/DefinitionsMessages.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Definitions/DefinitionsMessages.resx -------------------------------------------------------------------------------- /src/AutoStep/Definitions/DocumentationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Definitions/DocumentationHelper.cs -------------------------------------------------------------------------------- /src/AutoStep/Definitions/IStepDefinitionSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Definitions/IStepDefinitionSource.cs -------------------------------------------------------------------------------- /src/AutoStep/Definitions/IUpdatableStepDefinitionSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Definitions/IUpdatableStepDefinitionSource.cs -------------------------------------------------------------------------------- /src/AutoStep/Definitions/Interaction/ClassBackedInteractionMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Definitions/Interaction/ClassBackedInteractionMethod.cs -------------------------------------------------------------------------------- /src/AutoStep/Definitions/Interaction/DefinedInteractionMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Definitions/Interaction/DefinedInteractionMethod.cs -------------------------------------------------------------------------------- /src/AutoStep/Definitions/Interaction/DelegateInteractionMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Definitions/Interaction/DelegateInteractionMethod.cs -------------------------------------------------------------------------------- /src/AutoStep/Definitions/Interaction/FileDefinedInteractionMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Definitions/Interaction/FileDefinedInteractionMethod.cs -------------------------------------------------------------------------------- /src/AutoStep/Definitions/Interaction/InteractionMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Definitions/Interaction/InteractionMethod.cs -------------------------------------------------------------------------------- /src/AutoStep/Definitions/Interaction/InteractionStepDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Definitions/Interaction/InteractionStepDefinition.cs -------------------------------------------------------------------------------- /src/AutoStep/Definitions/Interaction/InteractionStepDefinitionSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Definitions/Interaction/InteractionStepDefinitionSource.cs -------------------------------------------------------------------------------- /src/AutoStep/Definitions/StepDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Definitions/StepDefinition.cs -------------------------------------------------------------------------------- /src/AutoStep/Definitions/StepTableRequirement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Definitions/StepTableRequirement.cs -------------------------------------------------------------------------------- /src/AutoStep/Definitions/Test/AssemblyStepDefinitionSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Definitions/Test/AssemblyStepDefinitionSource.cs -------------------------------------------------------------------------------- /src/AutoStep/Definitions/Test/CallbackDefinitionSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Definitions/Test/CallbackDefinitionSource.cs -------------------------------------------------------------------------------- /src/AutoStep/Definitions/Test/ClassBackedStepDefinitionSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Definitions/Test/ClassBackedStepDefinitionSource.cs -------------------------------------------------------------------------------- /src/AutoStep/Definitions/Test/ClassStepDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Definitions/Test/ClassStepDefinition.cs -------------------------------------------------------------------------------- /src/AutoStep/Definitions/Test/ClassStepDefinitionSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Definitions/Test/ClassStepDefinitionSource.cs -------------------------------------------------------------------------------- /src/AutoStep/Definitions/Test/DelegateBackedStepDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Definitions/Test/DelegateBackedStepDefinition.cs -------------------------------------------------------------------------------- /src/AutoStep/Definitions/Test/FileStepDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Definitions/Test/FileStepDefinition.cs -------------------------------------------------------------------------------- /src/AutoStep/Definitions/Test/FileStepDefinitionSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Definitions/Test/FileStepDefinitionSource.cs -------------------------------------------------------------------------------- /src/AutoStep/Definitions/Test/MethodBackedStepDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Definitions/Test/MethodBackedStepDefinition.cs -------------------------------------------------------------------------------- /src/AutoStep/DependencyRegistrationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/DependencyRegistrationExtensions.cs -------------------------------------------------------------------------------- /src/AutoStep/Elements/AnnotationElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Elements/AnnotationElement.cs -------------------------------------------------------------------------------- /src/AutoStep/Elements/BuiltElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Elements/BuiltElement.cs -------------------------------------------------------------------------------- /src/AutoStep/Elements/Interaction/ComponentDefinitionElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Elements/Interaction/ComponentDefinitionElement.cs -------------------------------------------------------------------------------- /src/AutoStep/Elements/Interaction/ConstantMethodArgumentElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Elements/Interaction/ConstantMethodArgumentElement.cs -------------------------------------------------------------------------------- /src/AutoStep/Elements/Interaction/ElementExceptionMessages.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Elements/Interaction/ElementExceptionMessages.Designer.cs -------------------------------------------------------------------------------- /src/AutoStep/Elements/Interaction/ElementExceptionMessages.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Elements/Interaction/ElementExceptionMessages.resx -------------------------------------------------------------------------------- /src/AutoStep/Elements/Interaction/FloatMethodArgumentElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Elements/Interaction/FloatMethodArgumentElement.cs -------------------------------------------------------------------------------- /src/AutoStep/Elements/Interaction/ICallChainSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Elements/Interaction/ICallChainSource.cs -------------------------------------------------------------------------------- /src/AutoStep/Elements/Interaction/IntMethodArgumentElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Elements/Interaction/IntMethodArgumentElement.cs -------------------------------------------------------------------------------- /src/AutoStep/Elements/Interaction/InteractionDefinitionElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Elements/Interaction/InteractionDefinitionElement.cs -------------------------------------------------------------------------------- /src/AutoStep/Elements/Interaction/InteractionFileElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Elements/Interaction/InteractionFileElement.cs -------------------------------------------------------------------------------- /src/AutoStep/Elements/Interaction/InteractionStepDefinitionElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Elements/Interaction/InteractionStepDefinitionElement.cs -------------------------------------------------------------------------------- /src/AutoStep/Elements/Interaction/InteractionStepSignature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Elements/Interaction/InteractionStepSignature.cs -------------------------------------------------------------------------------- /src/AutoStep/Elements/Interaction/MethodArgumentElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Elements/Interaction/MethodArgumentElement.cs -------------------------------------------------------------------------------- /src/AutoStep/Elements/Interaction/MethodCallElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Elements/Interaction/MethodCallElement.cs -------------------------------------------------------------------------------- /src/AutoStep/Elements/Interaction/MethodDefinitionArgumentElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Elements/Interaction/MethodDefinitionArgumentElement.cs -------------------------------------------------------------------------------- /src/AutoStep/Elements/Interaction/MethodDefinitionElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Elements/Interaction/MethodDefinitionElement.cs -------------------------------------------------------------------------------- /src/AutoStep/Elements/Interaction/NameRefElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Elements/Interaction/NameRefElement.cs -------------------------------------------------------------------------------- /src/AutoStep/Elements/Interaction/StringMethodArgumentElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Elements/Interaction/StringMethodArgumentElement.cs -------------------------------------------------------------------------------- /src/AutoStep/Elements/Interaction/TraitDefinitionElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Elements/Interaction/TraitDefinitionElement.cs -------------------------------------------------------------------------------- /src/AutoStep/Elements/Interaction/VariableArrayRefMethodArgument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Elements/Interaction/VariableArrayRefMethodArgument.cs -------------------------------------------------------------------------------- /src/AutoStep/Elements/Interaction/VariableRefMethodArgumentElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Elements/Interaction/VariableRefMethodArgumentElement.cs -------------------------------------------------------------------------------- /src/AutoStep/Elements/Metadata/IAnnotationInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Elements/Metadata/IAnnotationInfo.cs -------------------------------------------------------------------------------- /src/AutoStep/Elements/Metadata/IBackgroundInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Elements/Metadata/IBackgroundInfo.cs -------------------------------------------------------------------------------- /src/AutoStep/Elements/Metadata/IElementInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Elements/Metadata/IElementInfo.cs -------------------------------------------------------------------------------- /src/AutoStep/Elements/Metadata/IExampleInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Elements/Metadata/IExampleInfo.cs -------------------------------------------------------------------------------- /src/AutoStep/Elements/Metadata/IFeatureInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Elements/Metadata/IFeatureInfo.cs -------------------------------------------------------------------------------- /src/AutoStep/Elements/Metadata/IMethodCallArgumentInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Elements/Metadata/IMethodCallArgumentInfo.cs -------------------------------------------------------------------------------- /src/AutoStep/Elements/Metadata/IMethodCallInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Elements/Metadata/IMethodCallInfo.cs -------------------------------------------------------------------------------- /src/AutoStep/Elements/Metadata/IOptionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Elements/Metadata/IOptionInfo.cs -------------------------------------------------------------------------------- /src/AutoStep/Elements/Metadata/IPositionalElementInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Elements/Metadata/IPositionalElementInfo.cs -------------------------------------------------------------------------------- /src/AutoStep/Elements/Metadata/IScenarioInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Elements/Metadata/IScenarioInfo.cs -------------------------------------------------------------------------------- /src/AutoStep/Elements/Metadata/IScenarioOutlineInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Elements/Metadata/IScenarioOutlineInfo.cs -------------------------------------------------------------------------------- /src/AutoStep/Elements/Metadata/IStepCollectionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Elements/Metadata/IStepCollectionInfo.cs -------------------------------------------------------------------------------- /src/AutoStep/Elements/Metadata/IStepDefinitionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Elements/Metadata/IStepDefinitionInfo.cs -------------------------------------------------------------------------------- /src/AutoStep/Elements/Metadata/IStepReferenceInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Elements/Metadata/IStepReferenceInfo.cs -------------------------------------------------------------------------------- /src/AutoStep/Elements/Metadata/ITableCellInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Elements/Metadata/ITableCellInfo.cs -------------------------------------------------------------------------------- /src/AutoStep/Elements/Metadata/ITableHeaderCellInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Elements/Metadata/ITableHeaderCellInfo.cs -------------------------------------------------------------------------------- /src/AutoStep/Elements/Metadata/ITableHeaderInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Elements/Metadata/ITableHeaderInfo.cs -------------------------------------------------------------------------------- /src/AutoStep/Elements/Metadata/ITableInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Elements/Metadata/ITableInfo.cs -------------------------------------------------------------------------------- /src/AutoStep/Elements/Metadata/ITableRowInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Elements/Metadata/ITableRowInfo.cs -------------------------------------------------------------------------------- /src/AutoStep/Elements/Metadata/ITagInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Elements/Metadata/ITagInfo.cs -------------------------------------------------------------------------------- /src/AutoStep/Elements/OptionElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Elements/OptionElement.cs -------------------------------------------------------------------------------- /src/AutoStep/Elements/Parts/ArgumentPart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Elements/Parts/ArgumentPart.cs -------------------------------------------------------------------------------- /src/AutoStep/Elements/Parts/DefinitionPart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Elements/Parts/DefinitionPart.cs -------------------------------------------------------------------------------- /src/AutoStep/Elements/Parts/PlaceholderMatchPart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Elements/Parts/PlaceholderMatchPart.cs -------------------------------------------------------------------------------- /src/AutoStep/Elements/Parts/StepReferenceMatchResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Elements/Parts/StepReferenceMatchResult.cs -------------------------------------------------------------------------------- /src/AutoStep/Elements/Parts/WordDefinitionPart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Elements/Parts/WordDefinitionPart.cs -------------------------------------------------------------------------------- /src/AutoStep/Elements/PositionalElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Elements/PositionalElement.cs -------------------------------------------------------------------------------- /src/AutoStep/Elements/StepDeclarationSignature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Elements/StepDeclarationSignature.cs -------------------------------------------------------------------------------- /src/AutoStep/Elements/StepDefinitionElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Elements/StepDefinitionElement.cs -------------------------------------------------------------------------------- /src/AutoStep/Elements/StepTokens/EscapedCharToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Elements/StepTokens/EscapedCharToken.cs -------------------------------------------------------------------------------- /src/AutoStep/Elements/StepTokens/FloatToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Elements/StepTokens/FloatToken.cs -------------------------------------------------------------------------------- /src/AutoStep/Elements/StepTokens/IntToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Elements/StepTokens/IntToken.cs -------------------------------------------------------------------------------- /src/AutoStep/Elements/StepTokens/InterpolateStartToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Elements/StepTokens/InterpolateStartToken.cs -------------------------------------------------------------------------------- /src/AutoStep/Elements/StepTokens/NumericalToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Elements/StepTokens/NumericalToken.cs -------------------------------------------------------------------------------- /src/AutoStep/Elements/StepTokens/QuoteToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Elements/StepTokens/QuoteToken.cs -------------------------------------------------------------------------------- /src/AutoStep/Elements/StepTokens/StepToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Elements/StepTokens/StepToken.cs -------------------------------------------------------------------------------- /src/AutoStep/Elements/StepTokens/TextToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Elements/StepTokens/TextToken.cs -------------------------------------------------------------------------------- /src/AutoStep/Elements/StepTokens/VariableToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Elements/StepTokens/VariableToken.cs -------------------------------------------------------------------------------- /src/AutoStep/Elements/TagElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Elements/TagElement.cs -------------------------------------------------------------------------------- /src/AutoStep/Elements/Test/BackgroundElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Elements/Test/BackgroundElement.cs -------------------------------------------------------------------------------- /src/AutoStep/Elements/Test/CodeEntityElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Elements/Test/CodeEntityElement.cs -------------------------------------------------------------------------------- /src/AutoStep/Elements/Test/ElementExceptionMessages.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Elements/Test/ElementExceptionMessages.Designer.cs -------------------------------------------------------------------------------- /src/AutoStep/Elements/Test/ElementExceptionMessages.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Elements/Test/ElementExceptionMessages.resx -------------------------------------------------------------------------------- /src/AutoStep/Elements/Test/ExampleElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Elements/Test/ExampleElement.cs -------------------------------------------------------------------------------- /src/AutoStep/Elements/Test/FeatureElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Elements/Test/FeatureElement.cs -------------------------------------------------------------------------------- /src/AutoStep/Elements/Test/FileElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Elements/Test/FileElement.cs -------------------------------------------------------------------------------- /src/AutoStep/Elements/Test/IAnnotatableElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Elements/Test/IAnnotatableElement.cs -------------------------------------------------------------------------------- /src/AutoStep/Elements/Test/ScenarioElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Elements/Test/ScenarioElement.cs -------------------------------------------------------------------------------- /src/AutoStep/Elements/Test/ScenarioOutlineElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Elements/Test/ScenarioOutlineElement.cs -------------------------------------------------------------------------------- /src/AutoStep/Elements/Test/StepCollectionElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Elements/Test/StepCollectionElement.cs -------------------------------------------------------------------------------- /src/AutoStep/Elements/Test/StepReferenceElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Elements/Test/StepReferenceElement.cs -------------------------------------------------------------------------------- /src/AutoStep/Elements/Test/TableCellElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Elements/Test/TableCellElement.cs -------------------------------------------------------------------------------- /src/AutoStep/Elements/Test/TableElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Elements/Test/TableElement.cs -------------------------------------------------------------------------------- /src/AutoStep/Elements/Test/TableHeaderCellElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Elements/Test/TableHeaderCellElement.cs -------------------------------------------------------------------------------- /src/AutoStep/Elements/Test/TableHeaderElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Elements/Test/TableHeaderElement.cs -------------------------------------------------------------------------------- /src/AutoStep/Elements/Test/TableRowElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Elements/Test/TableRowElement.cs -------------------------------------------------------------------------------- /src/AutoStep/Execution/Binding/ArgumentBinderRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Execution/Binding/ArgumentBinderRegistry.cs -------------------------------------------------------------------------------- /src/AutoStep/Execution/Binding/DefaultArgumentBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Execution/Binding/DefaultArgumentBinder.cs -------------------------------------------------------------------------------- /src/AutoStep/Execution/Binding/IArgumentBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Execution/Binding/IArgumentBinder.cs -------------------------------------------------------------------------------- /src/AutoStep/Execution/CircularStepReferenceException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Execution/CircularStepReferenceException.cs -------------------------------------------------------------------------------- /src/AutoStep/Execution/Contexts/FeatureContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Execution/Contexts/FeatureContext.cs -------------------------------------------------------------------------------- /src/AutoStep/Execution/Contexts/FileDefinedStepContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Execution/Contexts/FileDefinedStepContext.cs -------------------------------------------------------------------------------- /src/AutoStep/Execution/Contexts/MethodContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Execution/Contexts/MethodContext.cs -------------------------------------------------------------------------------- /src/AutoStep/Execution/Contexts/RunContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Execution/Contexts/RunContext.cs -------------------------------------------------------------------------------- /src/AutoStep/Execution/Contexts/ScenarioContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Execution/Contexts/ScenarioContext.cs -------------------------------------------------------------------------------- /src/AutoStep/Execution/Contexts/StepCollectionContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Execution/Contexts/StepCollectionContext.cs -------------------------------------------------------------------------------- /src/AutoStep/Execution/Contexts/StepContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Execution/Contexts/StepContext.cs -------------------------------------------------------------------------------- /src/AutoStep/Execution/Contexts/TestExecutionContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Execution/Contexts/TestExecutionContext.cs -------------------------------------------------------------------------------- /src/AutoStep/Execution/Contexts/ThreadContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Execution/Contexts/ThreadContext.cs -------------------------------------------------------------------------------- /src/AutoStep/Execution/Control/BreakResponseInstruction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Execution/Control/BreakResponseInstruction.cs -------------------------------------------------------------------------------- /src/AutoStep/Execution/Control/DefaultExecutionStateManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Execution/Control/DefaultExecutionStateManager.cs -------------------------------------------------------------------------------- /src/AutoStep/Execution/Control/HaltResponseInstruction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Execution/Control/HaltResponseInstruction.cs -------------------------------------------------------------------------------- /src/AutoStep/Execution/Control/IExecutionStateManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Execution/Control/IExecutionStateManager.cs -------------------------------------------------------------------------------- /src/AutoStep/Execution/Control/TestThreadState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Execution/Control/TestThreadState.cs -------------------------------------------------------------------------------- /src/AutoStep/Execution/Dependency/ScopeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Execution/Dependency/ScopeExtensions.cs -------------------------------------------------------------------------------- /src/AutoStep/Execution/Dependency/ScopeTags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Execution/Dependency/ScopeTags.cs -------------------------------------------------------------------------------- /src/AutoStep/Execution/EventHandlingException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Execution/EventHandlingException.cs -------------------------------------------------------------------------------- /src/AutoStep/Execution/Events/BaseEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Execution/Events/BaseEventHandler.cs -------------------------------------------------------------------------------- /src/AutoStep/Execution/Events/EventPipeline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Execution/Events/EventPipeline.cs -------------------------------------------------------------------------------- /src/AutoStep/Execution/Events/EventPipelineBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Execution/Events/EventPipelineBuilder.cs -------------------------------------------------------------------------------- /src/AutoStep/Execution/Events/IEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Execution/Events/IEventHandler.cs -------------------------------------------------------------------------------- /src/AutoStep/Execution/Events/IEventPipeline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Execution/Events/IEventPipeline.cs -------------------------------------------------------------------------------- /src/AutoStep/Execution/Events/IEventPipelineBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Execution/Events/IEventPipelineBuilder.cs -------------------------------------------------------------------------------- /src/AutoStep/Execution/ExecutionText.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Execution/ExecutionText.Designer.cs -------------------------------------------------------------------------------- /src/AutoStep/Execution/ExecutionText.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Execution/ExecutionText.resx -------------------------------------------------------------------------------- /src/AutoStep/Execution/FeatureExecutionSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Execution/FeatureExecutionSet.cs -------------------------------------------------------------------------------- /src/AutoStep/Execution/IRunFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Execution/IRunFilter.cs -------------------------------------------------------------------------------- /src/AutoStep/Execution/Interaction/CircularInteractionMethodException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Execution/Interaction/CircularInteractionMethodException.cs -------------------------------------------------------------------------------- /src/AutoStep/Execution/Interaction/MethodChainInvocationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Execution/Interaction/MethodChainInvocationExtensions.cs -------------------------------------------------------------------------------- /src/AutoStep/Execution/InteractionVariables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Execution/InteractionVariables.cs -------------------------------------------------------------------------------- /src/AutoStep/Execution/Logging/CapturingLogFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Execution/Logging/CapturingLogFactory.cs -------------------------------------------------------------------------------- /src/AutoStep/Execution/Logging/CapturingLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Execution/Logging/CapturingLogger.cs -------------------------------------------------------------------------------- /src/AutoStep/Execution/Logging/ContextScopeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Execution/Logging/ContextScopeProvider.cs -------------------------------------------------------------------------------- /src/AutoStep/Execution/Logging/IContextScopeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Execution/Logging/IContextScopeProvider.cs -------------------------------------------------------------------------------- /src/AutoStep/Execution/Logging/LogConsumer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Execution/Logging/LogConsumer.cs -------------------------------------------------------------------------------- /src/AutoStep/Execution/Logging/LogEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Execution/Logging/LogEntry.cs -------------------------------------------------------------------------------- /src/AutoStep/Execution/Logging/LogEntry{TState}.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Execution/Logging/LogEntry{TState}.cs -------------------------------------------------------------------------------- /src/AutoStep/Execution/Logging/LoggingMessages.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Execution/Logging/LoggingMessages.Designer.cs -------------------------------------------------------------------------------- /src/AutoStep/Execution/Logging/LoggingMessages.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Execution/Logging/LoggingMessages.resx -------------------------------------------------------------------------------- /src/AutoStep/Execution/Results/ExportableResultsCollector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Execution/Results/ExportableResultsCollector.cs -------------------------------------------------------------------------------- /src/AutoStep/Execution/Results/ExportableResultsCollectorMessages.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Execution/Results/ExportableResultsCollectorMessages.Designer.cs -------------------------------------------------------------------------------- /src/AutoStep/Execution/Results/ExportableResultsCollectorMessages.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Execution/Results/ExportableResultsCollectorMessages.resx -------------------------------------------------------------------------------- /src/AutoStep/Execution/Results/FeatureResultData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Execution/Results/FeatureResultData.cs -------------------------------------------------------------------------------- /src/AutoStep/Execution/Results/IFeatureResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Execution/Results/IFeatureResult.cs -------------------------------------------------------------------------------- /src/AutoStep/Execution/Results/IResultsExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Execution/Results/IResultsExporter.cs -------------------------------------------------------------------------------- /src/AutoStep/Execution/Results/IRunResultSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Execution/Results/IRunResultSet.cs -------------------------------------------------------------------------------- /src/AutoStep/Execution/Results/IScenarioInvocationResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Execution/Results/IScenarioInvocationResult.cs -------------------------------------------------------------------------------- /src/AutoStep/Execution/Results/IScenarioResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Execution/Results/IScenarioResult.cs -------------------------------------------------------------------------------- /src/AutoStep/Execution/Results/ResultsCollector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Execution/Results/ResultsCollector.cs -------------------------------------------------------------------------------- /src/AutoStep/Execution/Results/ScenarioInvocationResultData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Execution/Results/ScenarioInvocationResultData.cs -------------------------------------------------------------------------------- /src/AutoStep/Execution/Results/ScenarioResultData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Execution/Results/ScenarioResultData.cs -------------------------------------------------------------------------------- /src/AutoStep/Execution/Results/WorkingResultSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Execution/Results/WorkingResultSet.cs -------------------------------------------------------------------------------- /src/AutoStep/Execution/Results/WorkingResultSetMessages.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Execution/Results/WorkingResultSetMessages.Designer.cs -------------------------------------------------------------------------------- /src/AutoStep/Execution/Results/WorkingResultSetMessages.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Execution/Results/WorkingResultSetMessages.resx -------------------------------------------------------------------------------- /src/AutoStep/Execution/RunAllFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Execution/RunAllFilter.cs -------------------------------------------------------------------------------- /src/AutoStep/Execution/StepFailureException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Execution/StepFailureException.cs -------------------------------------------------------------------------------- /src/AutoStep/Execution/Strategy/DefaultFeatureExecutionStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Execution/Strategy/DefaultFeatureExecutionStrategy.cs -------------------------------------------------------------------------------- /src/AutoStep/Execution/Strategy/DefaultRunExecutionStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Execution/Strategy/DefaultRunExecutionStrategy.cs -------------------------------------------------------------------------------- /src/AutoStep/Execution/Strategy/DefaultScenarioExecutionStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Execution/Strategy/DefaultScenarioExecutionStrategy.cs -------------------------------------------------------------------------------- /src/AutoStep/Execution/Strategy/DefaultStepCollectionExecutionStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Execution/Strategy/DefaultStepCollectionExecutionStrategy.cs -------------------------------------------------------------------------------- /src/AutoStep/Execution/Strategy/DefaultStepExecutionStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Execution/Strategy/DefaultStepExecutionStrategy.cs -------------------------------------------------------------------------------- /src/AutoStep/Execution/Strategy/IFeatureExecutionStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Execution/Strategy/IFeatureExecutionStrategy.cs -------------------------------------------------------------------------------- /src/AutoStep/Execution/Strategy/IRunExecutionStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Execution/Strategy/IRunExecutionStrategy.cs -------------------------------------------------------------------------------- /src/AutoStep/Execution/Strategy/IScenarioExecutionStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Execution/Strategy/IScenarioExecutionStrategy.cs -------------------------------------------------------------------------------- /src/AutoStep/Execution/Strategy/IStepCollectionExecutionStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Execution/Strategy/IStepCollectionExecutionStrategy.cs -------------------------------------------------------------------------------- /src/AutoStep/Execution/Strategy/IStepExecutionStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Execution/Strategy/IStepExecutionStrategy.cs -------------------------------------------------------------------------------- /src/AutoStep/Execution/Strategy/StrategyMessages.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Execution/Strategy/StrategyMessages.Designer.cs -------------------------------------------------------------------------------- /src/AutoStep/Execution/Strategy/StrategyMessages.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Execution/Strategy/StrategyMessages.resx -------------------------------------------------------------------------------- /src/AutoStep/Execution/TableVariableSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Execution/TableVariableSet.cs -------------------------------------------------------------------------------- /src/AutoStep/Execution/TestRun.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Execution/TestRun.cs -------------------------------------------------------------------------------- /src/AutoStep/Execution/TestRunExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Execution/TestRunExtensions.cs -------------------------------------------------------------------------------- /src/AutoStep/Execution/TokenBindingExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Execution/TokenBindingExtensions.cs -------------------------------------------------------------------------------- /src/AutoStep/Execution/UnboundStepException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Execution/UnboundStepException.cs -------------------------------------------------------------------------------- /src/AutoStep/Execution/VariableSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Execution/VariableSet.cs -------------------------------------------------------------------------------- /src/AutoStep/Execution/VariableSetBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Execution/VariableSetBase.cs -------------------------------------------------------------------------------- /src/AutoStep/GivenAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/GivenAttribute.cs -------------------------------------------------------------------------------- /src/AutoStep/InteractionMethodAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/InteractionMethodAttribute.cs -------------------------------------------------------------------------------- /src/AutoStep/InteractionMethodExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/InteractionMethodExtensions.cs -------------------------------------------------------------------------------- /src/AutoStep/InteractionsConfigurationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/InteractionsConfigurationExtensions.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/BaseErrorHandlingContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/BaseErrorHandlingContext.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/CompilerDiagnosticException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/CompilerDiagnosticException.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/CompilerMessageCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/CompilerMessageCode.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/CompilerMessageCodeText.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/CompilerMessageCodeText.Designer.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/CompilerMessageCodeText.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/CompilerMessageCodeText.resx -------------------------------------------------------------------------------- /src/AutoStep/Language/CompilerMessageLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/CompilerMessageLevel.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/CompilerMessageSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/CompilerMessageSet.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/IContentSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/IContentSource.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/ILineTokeniser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/ILineTokeniser.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Interaction/BuiltComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Interaction/BuiltComponent.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Interaction/CallChainCompileTimeVariables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Interaction/CallChainCompileTimeVariables.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Interaction/CallChainSeparationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Interaction/CallChainSeparationException.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Interaction/CompilerLogMessages.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Interaction/CompilerLogMessages.Designer.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Interaction/CompilerLogMessages.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Interaction/CompilerLogMessages.resx -------------------------------------------------------------------------------- /src/AutoStep/Language/Interaction/ComponentResolutionData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Interaction/ComponentResolutionData.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Interaction/DefaultCallChainValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Interaction/DefaultCallChainValidator.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Interaction/ExtendedMethodTableReferences.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Interaction/ExtendedMethodTableReferences.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Interaction/ICallChainValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Interaction/ICallChainValidator.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Interaction/IExtendedMethodTableReferences.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Interaction/IExtendedMethodTableReferences.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Interaction/IInteractionCompiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Interaction/IInteractionCompiler.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Interaction/IInteractionSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Interaction/IInteractionSet.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Interaction/IInteractionSetBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Interaction/IInteractionSetBuilder.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Interaction/IInteractionsConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Interaction/IInteractionsConfiguration.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Interaction/InteractionCompiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Interaction/InteractionCompiler.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Interaction/InteractionConstantSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Interaction/InteractionConstantSet.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Interaction/InteractionErrorStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Interaction/InteractionErrorStrategy.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Interaction/InteractionSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Interaction/InteractionSet.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Interaction/InteractionSetBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Interaction/InteractionSetBuilder.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Interaction/InteractionSetBuilderResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Interaction/InteractionSetBuilderResult.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Interaction/InteractionsCompilerOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Interaction/InteractionsCompilerOptions.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Interaction/InteractionsErrorHandlingContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Interaction/InteractionsErrorHandlingContext.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Interaction/InteractionsErrorListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Interaction/InteractionsErrorListener.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Interaction/InteractionsFileCompilerResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Interaction/InteractionsFileCompilerResult.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Interaction/InteractionsFileSetBuildResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Interaction/InteractionsFileSetBuildResult.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Interaction/InteractionsParserDiagnosticExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Interaction/InteractionsParserDiagnosticExtensions.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Interaction/LineTokeniser/InteractionLineTokeniser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Interaction/LineTokeniser/InteractionLineTokeniser.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Interaction/LineTokeniser/InteractionStepDefineLineVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Interaction/LineTokeniser/InteractionStepDefineLineVisitor.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Interaction/MethodTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Interaction/MethodTable.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Interaction/Parser/AutoStepInteractionsLexer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Interaction/Parser/AutoStepInteractionsLexer.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Interaction/Parser/AutoStepInteractionsLexer.g4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Interaction/Parser/AutoStepInteractionsLexer.g4 -------------------------------------------------------------------------------- /src/AutoStep/Language/Interaction/Parser/AutoStepInteractionsLexer.interp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Interaction/Parser/AutoStepInteractionsLexer.interp -------------------------------------------------------------------------------- /src/AutoStep/Language/Interaction/Parser/AutoStepInteractionsLexer.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Interaction/Parser/AutoStepInteractionsLexer.tokens -------------------------------------------------------------------------------- /src/AutoStep/Language/Interaction/Parser/AutoStepInteractionsParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Interaction/Parser/AutoStepInteractionsParser.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Interaction/Parser/AutoStepInteractionsParser.g4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Interaction/Parser/AutoStepInteractionsParser.g4 -------------------------------------------------------------------------------- /src/AutoStep/Language/Interaction/Parser/AutoStepInteractionsParser.interp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Interaction/Parser/AutoStepInteractionsParser.interp -------------------------------------------------------------------------------- /src/AutoStep/Language/Interaction/Parser/AutoStepInteractionsParser.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Interaction/Parser/AutoStepInteractionsParser.tokens -------------------------------------------------------------------------------- /src/AutoStep/Language/Interaction/Parser/AutoStepInteractionsParserBaseListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Interaction/Parser/AutoStepInteractionsParserBaseListener.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Interaction/Parser/AutoStepInteractionsParserBaseVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Interaction/Parser/AutoStepInteractionsParserBaseVisitor.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Interaction/Parser/AutoStepInteractionsParserListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Interaction/Parser/AutoStepInteractionsParserListener.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Interaction/Parser/AutoStepInteractionsParserVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Interaction/Parser/AutoStepInteractionsParserVisitor.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Interaction/Parser/build-antlr-java.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Interaction/Parser/build-antlr-java.ps1 -------------------------------------------------------------------------------- /src/AutoStep/Language/Interaction/Parser/build-antlr.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Interaction/Parser/build-antlr.ps1 -------------------------------------------------------------------------------- /src/AutoStep/Language/Interaction/RootMethodTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Interaction/RootMethodTable.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Interaction/Traits/TraitGraph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Interaction/Traits/TraitGraph.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Interaction/Traits/TraitNameMatchingSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Interaction/Traits/TraitNameMatchingSet.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Interaction/Traits/TraitNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Interaction/Traits/TraitNode.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Interaction/Traits/TraitRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Interaction/Traits/TraitRef.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Interaction/Visitors/BaseAutoStepInteractionVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Interaction/Visitors/BaseAutoStepInteractionVisitor.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Interaction/Visitors/ComponentDefinitionVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Interaction/Visitors/ComponentDefinitionVisitor.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Interaction/Visitors/InteractionCallChainDeclarationVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Interaction/Visitors/InteractionCallChainDeclarationVisitor.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Interaction/Visitors/InteractionDefinitionVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Interaction/Visitors/InteractionDefinitionVisitor.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Interaction/Visitors/InteractionStepDefinitionVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Interaction/Visitors/InteractionStepDefinitionVisitor.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Interaction/Visitors/InteractionsFileVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Interaction/Visitors/InteractionsFileVisitor.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Interaction/Visitors/MethodDefinitionVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Interaction/Visitors/MethodDefinitionVisitor.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Interaction/Visitors/TraitDefinitionVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Interaction/Visitors/TraitDefinitionVisitor.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/LanguageElementExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/LanguageElementExtensions.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/LanguageMessageFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/LanguageMessageFactory.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/LanguageOperationMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/LanguageOperationMessage.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/LanguageOperationResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/LanguageOperationResult.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/LanguageOperationResult{TOutput}.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/LanguageOperationResult{TOutput}.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/LineToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/LineToken.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/LineTokenCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/LineTokenCategory.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/LineTokeniseResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/LineTokeniseResult.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/ParserErrorListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/ParserErrorListener.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Position/IPositionIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Position/IPositionIndex.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Position/LineEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Position/LineEntry.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Position/PositionEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Position/PositionEntry.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Position/PositionIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Position/PositionIndex.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Position/PositionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Position/PositionInfo.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Position/PositionLineToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Position/PositionLineToken.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Position/PositionMessages.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Position/PositionMessages.Designer.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Position/PositionMessages.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Position/PositionMessages.resx -------------------------------------------------------------------------------- /src/AutoStep/Language/StepPlaceholders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/StepPlaceholders.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/StringContentSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/StringContentSource.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Test/ArgumentBinding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Test/ArgumentBinding.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Test/CompilerLogMessages.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Test/CompilerLogMessages.Designer.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Test/CompilerLogMessages.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Test/CompilerLogMessages.resx -------------------------------------------------------------------------------- /src/AutoStep/Language/Test/DefaultTestErrorHandling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Test/DefaultTestErrorHandling.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Test/FileCompilerResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Test/FileCompilerResult.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Test/ILinker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Test/ILinker.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Test/ITestCompiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Test/ITestCompiler.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Test/LineTokenSubCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Test/LineTokenSubCategory.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Test/LineTokeniser/LineTokeniserState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Test/LineTokeniser/LineTokeniserState.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Test/LineTokeniser/TestLineTokeniser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Test/LineTokeniser/TestLineTokeniser.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Test/LineTokeniser/TestLineVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Test/LineTokeniser/TestLineVisitor.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Test/LinkResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Test/LinkResult.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Test/Linker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Test/Linker.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Test/LinkerMessages.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Test/LinkerMessages.Designer.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Test/LinkerMessages.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Test/LinkerMessages.resx -------------------------------------------------------------------------------- /src/AutoStep/Language/Test/Matching/IMatchResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Test/Matching/IMatchResult.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Test/Matching/IMatchingTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Test/Matching/IMatchingTree.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Test/Matching/MatchResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Test/Matching/MatchResult.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Test/Matching/MatchingTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Test/Matching/MatchingTree.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Test/Matching/MatchingTreeMessages.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Test/Matching/MatchingTreeMessages.Designer.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Test/Matching/MatchingTreeMessages.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Test/Matching/MatchingTreeMessages.resx -------------------------------------------------------------------------------- /src/AutoStep/Language/Test/Matching/MatchingTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Test/Matching/MatchingTreeNode.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Test/Parser/AutoStepLexer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Test/Parser/AutoStepLexer.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Test/Parser/AutoStepLexer.g4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Test/Parser/AutoStepLexer.g4 -------------------------------------------------------------------------------- /src/AutoStep/Language/Test/Parser/AutoStepLexer.interp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Test/Parser/AutoStepLexer.interp -------------------------------------------------------------------------------- /src/AutoStep/Language/Test/Parser/AutoStepLexer.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Test/Parser/AutoStepLexer.tokens -------------------------------------------------------------------------------- /src/AutoStep/Language/Test/Parser/AutoStepParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Test/Parser/AutoStepParser.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Test/Parser/AutoStepParser.g4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Test/Parser/AutoStepParser.g4 -------------------------------------------------------------------------------- /src/AutoStep/Language/Test/Parser/AutoStepParser.interp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Test/Parser/AutoStepParser.interp -------------------------------------------------------------------------------- /src/AutoStep/Language/Test/Parser/AutoStepParser.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Test/Parser/AutoStepParser.tokens -------------------------------------------------------------------------------- /src/AutoStep/Language/Test/Parser/AutoStepParserBaseListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Test/Parser/AutoStepParserBaseListener.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Test/Parser/AutoStepParserBaseVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Test/Parser/AutoStepParserBaseVisitor.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Test/Parser/AutoStepParserListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Test/Parser/AutoStepParserListener.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Test/Parser/AutoStepParserVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Test/Parser/AutoStepParserVisitor.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Test/Parser/build-antlr-java.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Test/Parser/build-antlr-java.ps1 -------------------------------------------------------------------------------- /src/AutoStep/Language/Test/Parser/build-antlr.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Test/Parser/build-antlr.ps1 -------------------------------------------------------------------------------- /src/AutoStep/Language/Test/ParserDiagnosticExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Test/ParserDiagnosticExtensions.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Test/StepDefinitionFromBodyResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Test/StepDefinitionFromBodyResult.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Test/StepReferenceBinding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Test/StepReferenceBinding.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Test/TestCompiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Test/TestCompiler.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Test/TestCompilerOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Test/TestCompilerOptions.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Test/TestErrorStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Test/TestErrorStrategy.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Test/TestParserErrorListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Test/TestParserErrorListener.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Test/Visitors/BaseTestVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Test/Visitors/BaseTestVisitor.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Test/Visitors/FileVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Test/Visitors/FileVisitor.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Test/Visitors/StepDefinitionVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Test/Visitors/StepDefinitionVisitor.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Test/Visitors/StepReferenceVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Test/Visitors/StepReferenceVisitor.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/Test/Visitors/TableVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/Test/Visitors/TableVisitor.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/TokenStreamExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/TokenStreamExtensions.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/TokenStreamExtensionsMessages.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/TokenStreamExtensionsMessages.Designer.cs -------------------------------------------------------------------------------- /src/AutoStep/Language/TokenStreamExtensionsMessages.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/TokenStreamExtensionsMessages.resx -------------------------------------------------------------------------------- /src/AutoStep/Language/TokenisedArgumentValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Language/TokenisedArgumentValue.cs -------------------------------------------------------------------------------- /src/AutoStep/LanguageEngineAssertException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/LanguageEngineAssertException.cs -------------------------------------------------------------------------------- /src/AutoStep/LanguageEngineExceptionMessages.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/LanguageEngineExceptionMessages.Designer.cs -------------------------------------------------------------------------------- /src/AutoStep/LanguageEngineExceptionMessages.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/LanguageEngineExceptionMessages.resx -------------------------------------------------------------------------------- /src/AutoStep/Projects/Files/FileSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Projects/Files/FileSet.cs -------------------------------------------------------------------------------- /src/AutoStep/Projects/Files/FileSetEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Projects/Files/FileSetEntry.cs -------------------------------------------------------------------------------- /src/AutoStep/Projects/Files/FileSetMessages.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Projects/Files/FileSetMessages.Designer.cs -------------------------------------------------------------------------------- /src/AutoStep/Projects/Files/FileSetMessages.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Projects/Files/FileSetMessages.resx -------------------------------------------------------------------------------- /src/AutoStep/Projects/Files/IFileSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Projects/Files/IFileSet.cs -------------------------------------------------------------------------------- /src/AutoStep/Projects/Files/IProjectFileFromSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Projects/Files/IProjectFileFromSet.cs -------------------------------------------------------------------------------- /src/AutoStep/Projects/Files/ProjectFileExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Projects/Files/ProjectFileExtensions.cs -------------------------------------------------------------------------------- /src/AutoStep/Projects/Files/ProjectInteractionFileFromSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Projects/Files/ProjectInteractionFileFromSet.cs -------------------------------------------------------------------------------- /src/AutoStep/Projects/Files/ProjectTestFileFromSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Projects/Files/ProjectTestFileFromSet.cs -------------------------------------------------------------------------------- /src/AutoStep/Projects/IProjectBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Projects/IProjectBuilder.cs -------------------------------------------------------------------------------- /src/AutoStep/Projects/PhysicalFileSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Projects/PhysicalFileSource.cs -------------------------------------------------------------------------------- /src/AutoStep/Projects/Project.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Projects/Project.cs -------------------------------------------------------------------------------- /src/AutoStep/Projects/ProjectBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Projects/ProjectBuilder.cs -------------------------------------------------------------------------------- /src/AutoStep/Projects/ProjectBuilderMessages.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Projects/ProjectBuilderMessages.Designer.cs -------------------------------------------------------------------------------- /src/AutoStep/Projects/ProjectBuilderMessages.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Projects/ProjectBuilderMessages.resx -------------------------------------------------------------------------------- /src/AutoStep/Projects/ProjectBuilderResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Projects/ProjectBuilderResult.cs -------------------------------------------------------------------------------- /src/AutoStep/Projects/ProjectFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Projects/ProjectFile.cs -------------------------------------------------------------------------------- /src/AutoStep/Projects/ProjectInteractionFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Projects/ProjectInteractionFile.cs -------------------------------------------------------------------------------- /src/AutoStep/Projects/ProjectMessages.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Projects/ProjectMessages.Designer.cs -------------------------------------------------------------------------------- /src/AutoStep/Projects/ProjectMessages.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Projects/ProjectMessages.resx -------------------------------------------------------------------------------- /src/AutoStep/Projects/ProjectTestFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Projects/ProjectTestFile.cs -------------------------------------------------------------------------------- /src/AutoStep/StepDefinitionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/StepDefinitionAttribute.cs -------------------------------------------------------------------------------- /src/AutoStep/StepType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/StepType.cs -------------------------------------------------------------------------------- /src/AutoStep/StepsAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/StepsAttribute.cs -------------------------------------------------------------------------------- /src/AutoStep/Table.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/Table.cs -------------------------------------------------------------------------------- /src/AutoStep/TableMessages.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/TableMessages.Designer.cs -------------------------------------------------------------------------------- /src/AutoStep/TableMessages.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/TableMessages.resx -------------------------------------------------------------------------------- /src/AutoStep/TableRow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/TableRow.cs -------------------------------------------------------------------------------- /src/AutoStep/ThenAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/ThenAttribute.cs -------------------------------------------------------------------------------- /src/AutoStep/WhenAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/src/AutoStep/WhenAttribute.cs -------------------------------------------------------------------------------- /tests/AutoStep.Benchmarks/AutoStep.Benchmarks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Benchmarks/AutoStep.Benchmarks.csproj -------------------------------------------------------------------------------- /tests/AutoStep.Benchmarks/BenchmarkConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Benchmarks/BenchmarkConfig.cs -------------------------------------------------------------------------------- /tests/AutoStep.Benchmarks/DefinitionParsingBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Benchmarks/DefinitionParsingBenchmark.cs -------------------------------------------------------------------------------- /tests/AutoStep.Benchmarks/FullFileBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Benchmarks/FullFileBenchmark.cs -------------------------------------------------------------------------------- /tests/AutoStep.Benchmarks/FullFiles/Files.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Benchmarks/FullFiles/Files.Designer.cs -------------------------------------------------------------------------------- /tests/AutoStep.Benchmarks/FullFiles/Files.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Benchmarks/FullFiles/Files.resx -------------------------------------------------------------------------------- /tests/AutoStep.Benchmarks/FullFiles/GeneralBenchmark.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Benchmarks/FullFiles/GeneralBenchmark.txt -------------------------------------------------------------------------------- /tests/AutoStep.Benchmarks/MatchingTreeBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Benchmarks/MatchingTreeBenchmark.cs -------------------------------------------------------------------------------- /tests/AutoStep.Benchmarks/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Benchmarks/Program.cs -------------------------------------------------------------------------------- /tests/AutoStep.Benchmarks/TraitGraphBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Benchmarks/TraitGraphBenchmarks.cs -------------------------------------------------------------------------------- /tests/AutoStep.Language.Tests.DefinedSteps/AutoStep.Language.Tests.DefinedSteps.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Language.Tests.DefinedSteps/AutoStep.Language.Tests.DefinedSteps.csproj -------------------------------------------------------------------------------- /tests/AutoStep.Language.Tests.DefinedSteps/BasicSteps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Language.Tests.DefinedSteps/BasicSteps.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/AutoStep.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/AutoStep.Tests.csproj -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Builders/BackgroundBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Builders/BackgroundBuilder.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Builders/BaseBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Builders/BaseBuilder.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Builders/CellBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Builders/CellBuilder.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Builders/ExampleBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Builders/ExampleBuilder.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Builders/FeatureBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Builders/FeatureBuilder.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Builders/FileBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Builders/FileBuilder.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Builders/IInteractionEntityBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Builders/IInteractionEntityBuilder.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Builders/IStepCollectionBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Builders/IStepCollectionBuilder.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Builders/InteractionComponentBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Builders/InteractionComponentBuilder.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Builders/InteractionEntityBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Builders/InteractionEntityBuilderExtensions.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Builders/InteractionFileBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Builders/InteractionFileBuilder.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Builders/InteractionMethodArgumentSetBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Builders/InteractionMethodArgumentSetBuilder.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Builders/InteractionMethodCallChainBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Builders/InteractionMethodCallChainBuilder.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Builders/InteractionStepDefinitionBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Builders/InteractionStepDefinitionBuilder.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Builders/InteractionStringArgumentBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Builders/InteractionStringArgumentBuilder.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Builders/InteractionTraitBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Builders/InteractionTraitBuilder.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Builders/MethodDefinitionBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Builders/MethodDefinitionBuilder.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Builders/ScenarioBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Builders/ScenarioBuilder.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Builders/ScenarioOutlineBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Builders/ScenarioOutlineBuilder.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Builders/StepDefinitionBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Builders/StepDefinitionBuilder.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Builders/StepReferenceBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Builders/StepReferenceBuilder.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Builders/TableBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Builders/TableBuilder.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Builders/VariableArrayRefBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Builders/VariableArrayRefBuilder.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Configuration/ConfigurationExtensionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Configuration/ConfigurationExtensionTests.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Definition/Interaction/ClassBackedInteractionMethodTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Definition/Interaction/ClassBackedInteractionMethodTests.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Definition/Interaction/DelegateInteractionMethodTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Definition/Interaction/DelegateInteractionMethodTests.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Definition/Test/AssemblyStepDefinitionSourceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Definition/Test/AssemblyStepDefinitionSourceTests.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Definition/Test/ClassStepDefinitionSourceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Definition/Test/ClassStepDefinitionSourceTests.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Definition/Test/ClassStepDefinitionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Definition/Test/ClassStepDefinitionTests.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Definition/Test/DelegateBackedStepDefinitionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Definition/Test/DelegateBackedStepDefinitionTests.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Definition/Test/FileStepDefinitionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Definition/Test/FileStepDefinitionTests.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Elements/Test/FeatureElementTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Elements/Test/FeatureElementTests.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Elements/Test/StepReferenceElementTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Elements/Test/StepReferenceElementTests.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Execution/Binding/ArgumentBindingRegistryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Execution/Binding/ArgumentBindingRegistryTests.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Execution/Binding/DefaultArgumentBinderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Execution/Binding/DefaultArgumentBinderTests.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Execution/Contexts/ExecutionContextTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Execution/Contexts/ExecutionContextTests.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Execution/Dependency/RegistrationExtensionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Execution/Dependency/RegistrationExtensionTests.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Execution/Dependency/ScopeExtensionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Execution/Dependency/ScopeExtensionTests.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Execution/EndToEndTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Execution/EndToEndTests.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Execution/Events/EventPipelineBuilderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Execution/Events/EventPipelineBuilderTests.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Execution/Events/EventPipelineTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Execution/Events/EventPipelineTests.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Execution/FeatureExecutionSetTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Execution/FeatureExecutionSetTests.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Execution/Interaction/MethodChainingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Execution/Interaction/MethodChainingTests.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Execution/InteractionEndToEndTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Execution/InteractionEndToEndTests.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Execution/Logging/CapturingLoggerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Execution/Logging/CapturingLoggerTests.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Execution/Logging/ContextScopeProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Execution/Logging/ContextScopeProviderTests.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Execution/Logging/LogConsumerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Execution/Logging/LogConsumerTests.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Execution/ProjectMocks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Execution/ProjectMocks.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Execution/Results/ExportableResultsCollectorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Execution/Results/ExportableResultsCollectorTests.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Execution/Results/ResultsCollectorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Execution/Results/ResultsCollectorTests.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Execution/Strategy/DefaultFeatureExecutionStrategyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Execution/Strategy/DefaultFeatureExecutionStrategyTests.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Execution/Strategy/DefaultRunExecutionStrategyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Execution/Strategy/DefaultRunExecutionStrategyTests.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Execution/Strategy/DefaultScenarioExecutionStrategyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Execution/Strategy/DefaultScenarioExecutionStrategyTests.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Execution/Strategy/DefaultStepCollectionExecutionStrategyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Execution/Strategy/DefaultStepCollectionExecutionStrategyTests.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Execution/Strategy/DefaultStepExecutionStrategyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Execution/Strategy/DefaultStepExecutionStrategyTests.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Execution/TestRunTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Execution/TestRunTests.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Execution/TokenBindingExtensionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Execution/TokenBindingExtensionTests.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Execution/VariableSetTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Execution/VariableSetTests.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/IssueAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/IssueAttribute.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Language/EndToEndTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Language/EndToEndTests.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Language/FullFiles/Files.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Language/FullFiles/Files.Designer.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Language/FullFiles/Files.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Language/FullFiles/Files.resx -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Language/FullFiles/FullInteractionsFile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Language/FullFiles/FullInteractionsFile.txt -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Language/FullFiles/SingleScenarioSimple.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Language/FullFiles/SingleScenarioSimple.txt -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Language/Interaction/AutoStepInteractionSetBuilderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Language/Interaction/AutoStepInteractionSetBuilderTests.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Language/Interaction/DefaultCallChainValidatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Language/Interaction/DefaultCallChainValidatorTests.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Language/Interaction/FullFileTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Language/Interaction/FullFileTests.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Language/Interaction/InteractionsConfigurationExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Language/Interaction/InteractionsConfigurationExtensionsTests.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Language/Interaction/LineTokeniser/InteractionLineTokeniserTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Language/Interaction/LineTokeniser/InteractionLineTokeniserTests.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Language/Interaction/Parser/ComponentDefinitionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Language/Interaction/Parser/ComponentDefinitionTests.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Language/Interaction/Parser/InteractionStepDefinitionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Language/Interaction/Parser/InteractionStepDefinitionTests.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Language/Interaction/Parser/MethodCallArgumentTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Language/Interaction/Parser/MethodCallArgumentTests.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Language/Interaction/Parser/MethodCallChainTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Language/Interaction/Parser/MethodCallChainTests.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Language/Interaction/Parser/MethodDefinitionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Language/Interaction/Parser/MethodDefinitionTests.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Language/Interaction/Parser/TraitDefinitionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Language/Interaction/Parser/TraitDefinitionTests.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Language/Interaction/PositionIndexingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Language/Interaction/PositionIndexingTests.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Language/Interaction/TraitGraphTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Language/Interaction/TraitGraphTests.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Language/Interaction/TraitNameMatchingSetTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Language/Interaction/TraitNameMatchingSetTests.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Language/Position/PositionIndexTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Language/Position/PositionIndexTests.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Language/Test/LineTokeniser/AutoStepLineTokeniserTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Language/Test/LineTokeniser/AutoStepLineTokeniserTests.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Language/Test/LinkerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Language/Test/LinkerTests.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Language/Test/Matching/ArgumentPartTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Language/Test/Matching/ArgumentPartTests.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Language/Test/Matching/MatchingTreeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Language/Test/Matching/MatchingTreeTests.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Language/Test/Matching/PlaceholderPartTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Language/Test/Matching/PlaceholderPartTests.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Language/Test/Matching/WordDefinitionPartTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Language/Test/Matching/WordDefinitionPartTests.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Language/Test/Parsing/AnnotationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Language/Test/Parsing/AnnotationTests.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Language/Test/Parsing/BackgroundTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Language/Test/Parsing/BackgroundTests.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Language/Test/Parsing/DescriptionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Language/Test/Parsing/DescriptionTests.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Language/Test/Parsing/EndOfFileTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Language/Test/Parsing/EndOfFileTests.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Language/Test/Parsing/FeatureTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Language/Test/Parsing/FeatureTests.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Language/Test/Parsing/FullFileTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Language/Test/Parsing/FullFileTests.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Language/Test/Parsing/ScenarioOutlineTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Language/Test/Parsing/ScenarioOutlineTests.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Language/Test/Parsing/ScenarioTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Language/Test/Parsing/ScenarioTests.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Language/Test/Parsing/StepDefinitionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Language/Test/Parsing/StepDefinitionTests.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Language/Test/Parsing/StepTokenTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Language/Test/Parsing/StepTokenTests.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Language/Test/Parsing/TableTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Language/Test/Parsing/TableTests.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Language/Test/PositionIndexingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Language/Test/PositionIndexingTests.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Language/Test/StepDefinitionGenerationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Language/Test/StepDefinitionGenerationTests.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Projects/ProjectBuilderTests.Interaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Projects/ProjectBuilderTests.Interaction.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Projects/ProjectBuilderTests.Linker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Projects/ProjectBuilderTests.Linker.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Projects/ProjectBuilderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Projects/ProjectBuilderTests.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Projects/ProjectFileTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Projects/ProjectFileTests.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Projects/ProjectTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Projects/ProjectTests.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/TableTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/TableTests.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Utils/CompilerTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Utils/CompilerTestBase.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Utils/IAnnotableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Utils/IAnnotableExtensions.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Utils/InteractionsCompilerTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Utils/InteractionsCompilerTestBase.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Utils/LineTokenAssertionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Utils/LineTokenAssertionExtensions.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Utils/LoggingTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Utils/LoggingTestBase.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Utils/PartExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Utils/PartExtensions.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Utils/ProjectFileExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Utils/ProjectFileExtensions.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Utils/StepCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Utils/StepCollectionExtensions.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Utils/TestDisposable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Utils/TestDisposable.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Utils/TestLogFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Utils/TestLogFactory.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Utils/TestLogProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Utils/TestLogProvider.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Utils/TestLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Utils/TestLogger.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Utils/TestStepDefinitionSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Utils/TestStepDefinitionSource.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/Utils/UpdatableTestStepDefinitionSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/Utils/UpdatableTestStepDefinitionSource.cs -------------------------------------------------------------------------------- /tests/AutoStep.Tests/test-cover.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tests/AutoStep.Tests/test-cover.ps1 -------------------------------------------------------------------------------- /tools/ExtensionMethodsGenerator/ExtensionMethodsGenerator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tools/ExtensionMethodsGenerator/ExtensionMethodsGenerator.csproj -------------------------------------------------------------------------------- /tools/ExtensionMethodsGenerator/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autostep/AutoStep/HEAD/tools/ExtensionMethodsGenerator/Program.cs --------------------------------------------------------------------------------