TestThat |
TestThat.define(java.lang.String id,
java.lang.String content,
java.lang.String... parameters) |
You can use this method to call to define a local user defined macro for the test in case the tested macro
depends on the existence of some user defined macros.
|
TestThat |
TestThat.define(Macro macro) |
You can use this method to define a local built-in macro.
|
TestThat |
TestThat.define(Macro macro,
java.lang.String alias) |
You can use this method to define a local built-in macro with an alias.
|
TestThat |
TestThat.fromTheInput(java.lang.String input) |
|
TestThat |
TestThat.global(java.lang.String id,
java.lang.String content,
java.lang.String... parameters) |
You can use this method to call to define a global user defined macro for the test in case the tested macro
depends on the existence of some user defined macros.
|
TestThat |
TestThat.global(Macro macro) |
You can use this method to define a global built-in macro.
|
TestThat |
TestThat.global(Macro macro,
java.lang.String alias) |
You can use this method to define a global built-in macro with an alias.
|
static TestThat |
TestThat.theInput(java.lang.String input) |
|
static TestThat |
TestThat.theMacro(java.lang.Class<? extends Macro> klass) |
Create a new instance of the TestThat class.
|