mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-10 18:12:26 +03:00
18 lines
No EOL
337 B
JavaScript
18 lines
No EOL
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;
|
|
})(); |