first commit
This commit is contained in:
16
webapp/test/unit/controller/Main.controller.js
Normal file
16
webapp/test/unit/controller/Main.controller.js
Normal file
@ -0,0 +1,16 @@
|
||||
/*global QUnit*/
|
||||
|
||||
sap.ui.define([
|
||||
"mvcapp00124/controller/Main.controller"
|
||||
], function (Controller) {
|
||||
"use strict";
|
||||
|
||||
QUnit.module("Main Controller");
|
||||
|
||||
QUnit.test("I should test the Main controller", function (assert) {
|
||||
var oAppController = new Controller();
|
||||
oAppController.onInit();
|
||||
assert.ok(oAppController);
|
||||
});
|
||||
|
||||
});
|
Reference in New Issue
Block a user