Lines Matching refs:_assert
119 function _assert(comment, booleanValue, failureMessage) { function
131 _assert(commentArg(1, arguments), booleanValue === true, 'Call to assert(boolean) with false');
141 …_assert(commentArg(1, arguments), booleanValue === true, 'Call to assertTrue(boolean) with false');
151 …_assert(commentArg(1, arguments), booleanValue === false, 'Call to assertFalse(boolean) with true'…
158 …_assert(commentArg(2, arguments), var1 === var2, 'Expected ' + _displayStringForValue(var1) + ' bu…
165 …_assert(commentArg(2, arguments), var1 !== var2, 'Expected not to be ' + _displayStringForValue(va…
171 …_assert(commentArg(1, arguments), aVar === null, 'Expected ' + _displayStringForValue(null) + ' bu…
177 …_assert(commentArg(1, arguments), aVar !== null, 'Expected not to be ' + _displayStringForValue(nu…
183 …_assert(commentArg(1, arguments), aVar === top.JSUNIT_UNDEFINED_VALUE, 'Expected ' + _displayStrin…
189 …_assert(commentArg(1, arguments), aVar !== top.JSUNIT_UNDEFINED_VALUE, 'Expected not to be ' + _di…
195 _assert(commentArg(1, arguments), isNaN(aVar), 'Expected NaN');
201 _assert(commentArg(1, arguments), !isNaN(aVar), 'Expected not NaN');
233 …_assert(msg, isEqual, 'Expected ' + _displayStringForValue(var1) + ' but was ' + _displayStringFor…
260 …_assert(commentArg(2, arguments), var1Standardized === var2Standardized, 'Expected ' + _displayStr…