Function checkNotPresent [src]
Adds another searched phrase to the latest created Check
however ensures there is no matching phrase in the output.
Prototype
pub fn checkNotPresent(check_object: *CheckObject, phrase: []const u8) void
Parameters
check_object: *CheckObject
phrase: []const u8
Source
pub fn checkNotPresent(check_object: *CheckObject, phrase: []const u8) void {
check_object.checkNotPresentInner(phrase, null);
}