Lines Matching refs:YUITest
9 YUITest.TestCase = function (template) {
30 YUITest.TestCase.prototype = {
33 constructor: YUITest.TestCase,
43 return YUITest.TestRunner.callback.apply(YUITest.TestRunner,arguments);
54 YUITest.TestRunner.resume(segment);
73 throw new YUITest.Wait(segment, actualDelay);
75 throw new YUITest.Wait(function(){
76 YUITest.Assert.fail("Timeout: wait() called but resume() never called.");
86 * Asserts that a given condition is true. If not, then a YUITest.AssertionError object is thrown
93 YUITest.Assert._increment();
95 throw new YUITest.AssertionError(YUITest.Assert._formatMessage(message, "Assertion failed."));
100 * Forces an assertion error to occur. Shortcut for YUITest.Assert.fail().
105 YUITest.Assert.fail(message);