Table of Contents

Class AaaSpec

Namespace
Heleonix.Testing.NUnit.Aaa
Assembly
Heleonix.Testing.NUnit.dll

Represents the specification for the AAA tests pattern.

public static class AaaSpec
Inheritance
AaaSpec
Inherited Members

Methods

Act(Action)

Builds the 'Act' step of the test.

public static void Act(Action action)

Parameters

action Action

The action.

And(string, Action)

Builds the 'And' step of the test.

public static void And(string description, Action action)

Parameters

description string

The description.

action Action

The action.

Arrange(Action)

Builds the 'Arrange' step of the test.

public static void Arrange(Action action)

Parameters

action Action

The action.

Should(string, Action)

Builds the 'Should' step of the test.

public static void Should(string description, Action action)

Parameters

description string

The description.

action Action

The action.

Teardown(Action)

Builds the 'Teardown' step of the test.

public static void Teardown(Action action)

Parameters

action Action

The action.

When(string, Action)

Builds the 'When' step of the test.

public static void When(string description, Action action)

Parameters

description string

The description.

action Action

The action.