[Common UI] Reorganize general UI tests

Reorganize folder strucutre for tests in bundle
platform/commonUI/general; source folder structure
has been modified to accommodate additional classes
added to support autoflow tabular views, WTD-614,
so test folder needs to be reorganized accordingly
This commit is contained in:
Victor Woeltjen 2014-12-30 13:40:42 -08:00
parent 112622ab9f
commit 54c075dc88
10 changed files with 18 additions and 18 deletions

View File

@ -1,7 +1,7 @@
/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/ /*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/
define( define(
["../src/ActionGroupController"], ["../../src/controllers/ActionGroupController"],
function (ActionGroupController) { function (ActionGroupController) {
"use strict"; "use strict";

View File

@ -1,7 +1,7 @@
/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/ /*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/
define( define(
["../src/BottomBarController"], ["../../src/controllers/BottomBarController"],
function (BottomBarController) { function (BottomBarController) {
"use strict"; "use strict";

View File

@ -1,7 +1,7 @@
/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/ /*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/
define( define(
["../src/ClickAwayController"], ["../../src/controllers/ClickAwayController"],
function (ClickAwayController) { function (ClickAwayController) {
"use strict"; "use strict";

View File

@ -1,7 +1,7 @@
/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/ /*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/
define( define(
["../src/ContextMenuController"], ["../../src/controllers/ContextMenuController"],
function (ContextMenuController) { function (ContextMenuController) {
"use strict"; "use strict";

View File

@ -1,7 +1,7 @@
/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/ /*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/
define( define(
["../src/ToggleController"], ["../../src/controllers/ToggleController"],
function (ToggleController) { function (ToggleController) {
"use strict"; "use strict";

View File

@ -1,7 +1,7 @@
/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/ /*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/
define( define(
["../src/TreeNodeController"], ["../../src/controllers/TreeNodeController"],
function (TreeNodeController) { function (TreeNodeController) {
"use strict"; "use strict";

View File

@ -4,7 +4,7 @@
* MCTRepresentationSpec. Created by vwoeltje on 11/6/14. * MCTRepresentationSpec. Created by vwoeltje on 11/6/14.
*/ */
define( define(
["../src/ViewSwitcherController"], ["../../src/controllers/ViewSwitcherController"],
function (ViewSwitcherController) { function (ViewSwitcherController) {
"use strict"; "use strict";

View File

@ -1,7 +1,7 @@
/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/ /*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/
define( define(
["../src/MCTContainer"], ["../../src/directives/MCTContainer"],
function (MCTContainer) { function (MCTContainer) {
"use strict"; "use strict";

View File

@ -1,7 +1,7 @@
/*global define,describe,it,expect,beforeEach,jasmine*/ /*global define,describe,it,expect,beforeEach,jasmine*/
define( define(
["../src/MCTDrag"], ["../../src/directives/MCTDrag"],
function (MCTDrag) { function (MCTDrag) {
"use strict"; "use strict";

View File

@ -1,11 +1,11 @@
[ [
"ActionGroupController", "controllers/ActionGroupController",
"BottomBarController", "controllers/BottomBarController",
"ClickAwayController", "controllers/ClickAwayController",
"ContextMenuController", "controllers/ContextMenuController",
"MCTContainer", "controllers/ToggleController",
"MCTDrag", "controllers/TreeNodeController",
"ToggleController", "controllers/ViewSwitcherController",
"TreeNodeController", "directives/MCTContainer",
"ViewSwitcherController" "directives/MCTDrag"
] ]