ares-ide
Version:
A browser-based code editor and UI designer for Enyo 2 projects
23 lines (21 loc) • 366 B
JavaScript
enyo.kind({
name: "TestSuiteTemplate",
kind: "Ares.TestSuite",
noDefer: true,
debug: false,
create: function () {
this.inherited(arguments);
},
/**
* test success example
*/
testWithSuccess: function() {
this.finish();
},
/**
* test without success example
*/
testWithOutSuccess: function() {
this.finish("test with excepted failure");
},
});