Executions: Transaction stubs¶
This page mirrors the Transaction stubs section from Executions.
CreateStub¶
Source file, signature, and docstring
Member
ExecutionBuilder.CreateStub(TransactionStubBuilder stubBuilder)
Kind function
Declaring Type ExecutionBuilder
Source File QaaS.Mocker/ExecutionBuilder.cs
Signature
Docstring
Creates or adds the configured stub entry on the current Mocker execution builder instance.
Use this method when working with the documented Mocker execution builder API surface in code. The change is stored on the current builder instance and is consumed by later build, validation, or execution steps.
CreateStub¶
Source file, signature, and docstring
Member
ExecutionBuilder.CreateStub(TransactionStubConfig stubConfig)
Kind function
Declaring Type ExecutionBuilder
Source File QaaS.Mocker/ExecutionBuilder.cs
Signature
Docstring
Creates or adds the configured stub entry on the current Mocker execution builder instance.
Use this method when working with the documented Mocker execution builder API surface in code. The change is stored on the current builder instance and is consumed by later build, validation, or execution steps.
ReadStub¶
Source file, signature, and docstring
Member
ExecutionBuilder.ReadStub(string stubName)
Kind function
Declaring Type ExecutionBuilder
Source File QaaS.Mocker/ExecutionBuilder.cs
Signature
Docstring
Returns the configured stub currently stored on the Mocker execution builder instance.
Use this method when working with the documented Mocker execution builder API surface in code. Use it to inspect the current configured state without rebuilding the surrounding collection or runtime object graph.
UpdateStub¶
Source file, signature, and docstring
Member
ExecutionBuilder.UpdateStub(string stubName, Action<TransactionStubBuilder> configureAction)
Kind function
Declaring Type ExecutionBuilder
Source File QaaS.Mocker/ExecutionBuilder.cs
Signature
Docstring
Updates the configured stub stored on the current Mocker execution builder instance.
Use this method when working with the documented Mocker execution builder API surface in code. The change is stored on the current builder instance and is consumed by later build, validation, or execution steps.
UpdateStub¶
Source file, signature, and docstring
Member
ExecutionBuilder.UpdateStub(string stubName, TransactionStubBuilder stubBuilder)
Kind function
Declaring Type ExecutionBuilder
Source File QaaS.Mocker/ExecutionBuilder.cs
Signature
Docstring
Updates the configured stub stored on the current Mocker execution builder instance.
Use this method when working with the documented Mocker execution builder API surface in code. The change is stored on the current builder instance and is consumed by later build, validation, or execution steps.
UpdateStub¶
Source file, signature, and docstring
Member
ExecutionBuilder.UpdateStub(string stubName, TransactionStubConfig stubConfig)
Kind function
Declaring Type ExecutionBuilder
Source File QaaS.Mocker/ExecutionBuilder.cs
Signature
Docstring
Updates the configured stub stored on the current Mocker execution builder instance.
Use this method when working with the documented Mocker execution builder API surface in code. The change is stored on the current builder instance and is consumed by later build, validation, or execution steps.
DeleteStub¶
Source file, signature, and docstring
Member
ExecutionBuilder.DeleteStub(string stubName)
Kind function
Declaring Type ExecutionBuilder
Source File QaaS.Mocker/ExecutionBuilder.cs
Signature
Docstring
Removes the configured stub from the current Mocker execution builder instance.
Use this method when working with the documented Mocker execution builder API surface in code. The change is stored on the current builder instance and is consumed by later build, validation, or execution steps.