forked from mirrors/easyappointments
18 lines
337 B
JavaScript
18 lines
337 B
JavaScript
|
(function () {
|
||
|
/**
|
||
|
* Creates a new test object.
|
||
|
* @alias Test
|
||
|
* @constructor
|
||
|
*/
|
||
|
var Test = function(testName) {
|
||
|
/** Document me. */
|
||
|
this.name = testName;
|
||
|
}
|
||
|
|
||
|
/** Document me. */
|
||
|
Test.prototype.run = function(message) {
|
||
|
};
|
||
|
|
||
|
/** Document me. */
|
||
|
Test.counter = 1;
|
||
|
})();
|