Home | History | Annotate | Download | only in resources

Lines Matching refs:_b

39 function areArraysEqual(_a, _b)
42 if (_a.length !== _b.length)
45 if (_a[i] !== _b[i])
97 function shouldBe(_a, _b)
99 if (typeof _a != "string" || typeof _b != "string")
108 var _bv = eval(_b);
113 testPassed(_a + " is " + _b);
240 function shouldBeGreaterThanOrEqual(_a, _b) {
241 if (typeof _a != "string" || typeof _b != "string")
251 var _bv = eval(_b);
254 testFailed(_a + " should be >= " + _b + ". Threw exception " + exception);
256 testFailed(_a + " should be >= " + _b + ". Was " + _av + " (of type " + typeof _av + ").");
258 testPassed(_a + " is >= " + _b);