* plunit.assert_null * plunit.assert_null_message * * Syntax: * PROCEDURE assert_null(actual anyelement, message varchar default ''); * * Purpose: * Asserts that the actual is null. The optional message will be * displayed if the assertion fails. If not supplied, a default message * is displayed. * ****************************************************************/
| 120 | * |
| 121 | ****************************************************************/ |
| 122 | Datum |
| 123 | plunit_assert_null(PG_FUNCTION_ARGS) |
| 124 | { |
| 125 | return plunit_assert_null_message(fcinfo); |
| 126 | } |
| 127 | |
| 128 | Datum |
| 129 | plunit_assert_null_message(PG_FUNCTION_ARGS) |
nothing calls this directly
no test coverage detected