| Interface | Description |
|---|---|
| FluentBddCommands<TestResult> |
These are the BDD methods that are used to write tests.
|
| Given |
When the
Given.prime() method is invoked, any setup necessary for this
to affect the system under test should be performed immediately. |
| ThenAssertion<Then,TestResult> |
Implementations should produce a
Then given a TestResult. |
| ThenVerification<TestResult> |
When the
ThenVerification.verify(Object) method is invoked, a verification should be made about the TestResult. |
| When<TestResult> |
This class represents the system under test.
|
| WhenWithoutResult |
This class represents the system under test.
|
| WithFluentBdd<TestResult> |
You must implement the
fluentBdd() method by providing a reference to a FluentBdd that is
a field of your test, annotated with a JUnit Rule. |
| Class | Description |
|---|---|
| FluentBdd<TestResult> |
Use this as a JUnit
Rule alongside WithFluentBdd. |
| Verification<TestResult> |
Copyright © 2016. All rights reserved.