Table of Contents

Class BddSpec

Namespace
Heleonix.Testing.NUnit.Bdd
Assembly
Heleonix.Testing.NUnit.dll

Represents the specification for the BDD tests pattern.

public static class BddSpec
Inheritance
BddSpec
Inherited Members

Methods

AfterEach(Action)

Builds the 'AfterEach' step of the test.

public static void AfterEach(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.

BeforeEach(Action)

Builds the 'BeforeEach' step of the test.

public static void BeforeEach(Action action)

Parameters

action Action

The action.

Given(string, Action)

Builds the 'Given' step of the test.

public static void Given(string description, Action action)

Parameters

description string

The description.

action Action

The action.

Then(string, Action)

Builds the 'Then' step of the test.

public static void Then(string description, Action action)

Parameters

description string

The description.

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.