Ticket #3348: qunit.nullasserts.diff
| File qunit.nullasserts.diff, 521 bytes (added by sugendran, 5 years ago) |
|---|
-
testrunner.js
217 217 } 218 218 219 219 /** 220 * Asserts that the object is null. 221 */ 222 function isNull(a, msg){ 223 _config.Test.push( [ a === null, msg ] ); 224 } 225 226 /** 227 * Asserts that the object is not null. 228 */ 229 function notNull(a, msg){ 230 _config.Test.push( [ a != null, msg ] ); 231 } 232 233 /** 220 234 * Asserts that two arrays are the same 221 235 */ 222 236 function isSet(a, b, msg) {
