first commit

This commit is contained in:
Dongho Kim
2025-05-21 15:00:13 +00:00
commit da3ac0e469
39 changed files with 16602 additions and 0 deletions

View File

@ -0,0 +1,16 @@
/*global QUnit*/
sap.ui.define([
"restaurant/z00124ss25restaurant/controller/tablePos.controller"
], function (Controller) {
"use strict";
QUnit.module("tablePos Controller");
QUnit.test("I should test the tablePos controller", function (assert) {
var oAppController = new Controller();
oAppController.onInit();
assert.ok(oAppController);
});
});