* plunit.assert_false * plunit.assert_false_message * * Syntax: * PROCEDURE assert_false(condition boolean, message varchar default ''); * * Purpose: * Asserts that the condition is false. The optional message will be * displayed if the assertion fails. If not supplied, a default message * is displayed. * ****************************************************************/
| 86 | * |
| 87 | ****************************************************************/ |
| 88 | Datum |
| 89 | plunit_assert_false(PG_FUNCTION_ARGS) |
| 90 | { |
| 91 | return plunit_assert_false_message(fcinfo); |
| 92 | } |
| 93 | |
| 94 | Datum |
| 95 | plunit_assert_false_message(PG_FUNCTION_ARGS) |
nothing calls this directly
no test coverage detected