first commit

This commit is contained in:
2025-04-25 22:19:01 +02:00
commit 777a29d3bc
35 changed files with 14665 additions and 0 deletions

View 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);
});
});