Skip to content

Executions: Assertions

TL;DR — This page mirrors the Assertions section from Executions as a focused reference.

When to use

Use this page when you need the focused member list, signatures, and source notes for this section without scanning the full parent reference.

C# (CAC) usage

AddAssertion

Source file, signature, and docstring

Member ExecutionBuilder.AddAssertion(AssertionBuilder assertionBuilder)

Kind function

Declaring Type ExecutionBuilder

Source File QaaS.Runner/ExecutionBuilder.cs

Signature

public ExecutionBuilder AddAssertion(AssertionBuilder assertionBuilder)

Docstring

Adds the supplied assertion to the current Runner execution builder instance.

UpdateAssertion

Source file, signature, and docstring

Member ExecutionBuilder.UpdateAssertion(string assertionName, AssertionBuilder assertionBuilder)

Kind function

Declaring Type ExecutionBuilder

Source File QaaS.Runner/ExecutionBuilder.cs

Signature

public ExecutionBuilder UpdateAssertion(string assertionName, AssertionBuilder assertionBuilder)

Docstring

Updates the configured assertion stored on the current Runner execution builder instance.

RemoveAssertion

Source file, signature, and docstring

Member ExecutionBuilder.RemoveAssertion(string assertionName)

Kind function

Declaring Type ExecutionBuilder

Source File QaaS.Runner/ExecutionBuilder.cs

Signature

public ExecutionBuilder RemoveAssertion(string assertionName)

Docstring

Removes the configured assertion from the current Runner execution builder instance.

RemoveAssertionAt

Source file, signature, and docstring

Member ExecutionBuilder.RemoveAssertionAt(int index)

Kind function

Declaring Type ExecutionBuilder

Source File QaaS.Runner/ExecutionBuilder.cs

Signature

public ExecutionBuilder RemoveAssertionAt(int index)

Docstring

Removes the configured assertion at the specified index from the current Runner execution builder instance.

Edge cases

  • This page is generated from the parent reference section; edit the source XML docs or generator when content needs to change.
  • If a linked source member is renamed, regenerate the reference docs before changing prose by hand.

See also