interface AssertionFormatterFacade (source)
Responsible to call an appropriate AssertionFormatter which supports formating a given Assertion.
| abstract fun format(assertion: Assertion, sb: StringBuilder, assertionFilter: (Assertion) -> Boolean): UnitFormats the given assertion and appends the result to the given sb. | |
| abstract fun register(assertionFormatterFactory: (AssertionFormatterController) -> AssertionFormatter): UnitUses the given assertionFormatterFactory to create and register an AssertionFormatter -- which means the created AssertionFormatter will be considered when an Assertion shall be formatted. |