Package com.tngtech.jgiven.format
Class NotFormatter
- java.lang.Object
-
- com.tngtech.jgiven.format.BooleanFormatter
-
- com.tngtech.jgiven.format.NotFormatter
-
- All Implemented Interfaces:
ArgumentFormatter<java.lang.Boolean>
public class NotFormatter extends BooleanFormatter
Translatesfalse
to the word "not" andtrue
to the empty word "".true: "" false: "not"
Example:
then().the_coffee_should_$_be_served( coffeeServed )
Result:
coffeeServed == false
then the coffee should not be served
coffeeServed == true
then the coffee should be served
-
-
Constructor Summary
Constructors Constructor Description NotFormatter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
format(java.lang.Boolean b, java.lang.String... args)
Format a single argument by taking optional formatter arguments into account.
-
-
-
Method Detail
-
format
public java.lang.String format(java.lang.Boolean b, java.lang.String... args)
Description copied from interface:ArgumentFormatter
Format a single argument by taking optional formatter arguments into account.- Specified by:
format
in interfaceArgumentFormatter<java.lang.Boolean>
- Overrides:
format
in classBooleanFormatter
- Parameters:
b
- the object to formatargs
- optional arguments for the formatter to control the formatting.- Returns:
- a formatted string
-
-