assertthat
Version:
assertthat provides fluent TDD.
14 lines (11 loc) • 306 B
text/typescript
import { assertAnyIsNull } from '../forAny/assertAnyIsNull';
import { AssertionFailed } from '../../errors';
import { Result } from 'defekt';
const assertActualIsNull = function (
actual: any
): Result<undefined, AssertionFailed> {
return assertAnyIsNull(actual);
};
export {
assertActualIsNull
};