diff --git a/platform/commonUI/general/test/ActionGroupControllerSpec.js b/platform/commonUI/general/test/ActionGroupControllerSpec.js new file mode 100644 index 0000000000..5cb6ac6cdf --- /dev/null +++ b/platform/commonUI/general/test/ActionGroupControllerSpec.js @@ -0,0 +1,18 @@ +/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/ + +define( + ["../src/ActionGroupController"], + function (ActionGroupController) { + "use strict"; + + describe("The domain object provider", function () { + var mockScope, + controller; + + beforeEach(function () { + mockScope = jasmine.createSpyObj("$scope", ["$watch"]); + controller = new ActionGroupController(mockScope); + }); + }); + } +); \ No newline at end of file diff --git a/platform/commonUI/general/test/ClickAwayControllerSpec.js b/platform/commonUI/general/test/ClickAwayControllerSpec.js new file mode 100644 index 0000000000..1dec8c17d6 --- /dev/null +++ b/platform/commonUI/general/test/ClickAwayControllerSpec.js @@ -0,0 +1,11 @@ +/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/ + +define( + ["../src/ClickAwayController"], + function (ClickAwayController) { + "use strict"; + + describe("The domain object provider", function () { + }); + } +); \ No newline at end of file diff --git a/platform/commonUI/general/test/ContextMenuControllerSpec.js b/platform/commonUI/general/test/ContextMenuControllerSpec.js new file mode 100644 index 0000000000..ce4c6567d4 --- /dev/null +++ b/platform/commonUI/general/test/ContextMenuControllerSpec.js @@ -0,0 +1,11 @@ +/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/ + +define( + ["../src/ContextMenuController"], + function (ContextMenuController) { + "use strict"; + + describe("The domain object provider", function () { + }); + } +); \ No newline at end of file diff --git a/platform/commonUI/general/test/MCTContainerSpec.js b/platform/commonUI/general/test/MCTContainerSpec.js new file mode 100644 index 0000000000..e559fa68db --- /dev/null +++ b/platform/commonUI/general/test/MCTContainerSpec.js @@ -0,0 +1,11 @@ +/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/ + +define( + ["../src/MCTContainer"], + function (MCTContainer) { + "use strict"; + + describe("The mct-container directive", function () { + }); + } +); \ No newline at end of file diff --git a/platform/commonUI/general/test/ToggleControllerSpec.js b/platform/commonUI/general/test/ToggleControllerSpec.js new file mode 100644 index 0000000000..6049a38b18 --- /dev/null +++ b/platform/commonUI/general/test/ToggleControllerSpec.js @@ -0,0 +1,11 @@ +/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/ + +define( + ["../src/ToggleController"], + function (ToggleController) { + "use strict"; + + describe("The toggle controller", function () { + }); + } +); \ No newline at end of file diff --git a/platform/commonUI/general/test/TreeNodeControllerSpec.js b/platform/commonUI/general/test/TreeNodeControllerSpec.js new file mode 100644 index 0000000000..fc92708529 --- /dev/null +++ b/platform/commonUI/general/test/TreeNodeControllerSpec.js @@ -0,0 +1,12 @@ +/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/ + +define( + ["../src/TreeNodeController"], + function (TreeNodeController) { + "use strict"; + + describe("The tree node controller", function () { + + }); + } +); \ No newline at end of file diff --git a/platform/commonUI/general/test/suite.json b/platform/commonUI/general/test/suite.json new file mode 100644 index 0000000000..a8dbea6388 --- /dev/null +++ b/platform/commonUI/general/test/suite.json @@ -0,0 +1,8 @@ +[ + "ActionGroupController", + "ClickAwayController", + "ContextMenuController", + "MCTContainer", + "ToggleController", + "TreeNodeController" +] \ No newline at end of file