testlistener.js
来自「Browser independent JavaScript SDK. Clas」· JavaScript 代码 · 共 30 行
JS
30 行
/**
* @fileOverview
* @example
*/
/**
* @class TestListener
*/ jsx.tunit.framework.TestListener = function(){this.initialize.apply(this, arguments);}
/** @ignore */ jsx.tunit.framework.TestListener.prototype.initialize = function(){}
jsx.tunit.framework.TestListener.prototype.startTest = function(_test){throw 'TestListener.startTest is abstract';};
jsx.tunit.framework.TestListener.prototype.endTest = function(_test){throw 'TestListener.endTest is abstract';};
jsx.tunit.framework.TestListener.prototype.addSuccess = function(_test){throw 'TestListener.addSuccess is abstract';};
jsx.tunit.framework.TestListener.prototype.addFailure = function(_test, _failure){throw 'TestListener.addFailure is abstract';};
jsx.tunit.framework.TestListener.prototype.addError = function(_test, _error){throw 'TestListener.addError is abstract';};
jsx.tunit.framework.TestListener.PACKAGE = "jsx.tunit.framework";jsx.tunit.framework.TestListener.CLASS = "jsx.tunit.framework.TestListener";jsx.tunit.framework.TestListener.SUPER_CLASS = "";jsx.tunit.framework.TestListener.IMPORTS = [];jsx.tunit.framework.TestListener.INTERFACES = [];jsx.tunit.framework.TestListener.MIXINS = [];jsx.tunit.framework.TestListener.getName = function(){return jsx.tunit.framework.TestListener.CLASS;}jsx.tunit.framework.TestListener.klass = new jsx.lang.Class(jsx.tunit.framework.TestListener.getName());jsx.tunit.framework.TestListener.prototype.getClass = function(){return jsx.tunit.framework.TestListener.klass;}jsx.tunit.framework.TestListener.WARNINGS = [];
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?