diff --git a/bundles.json b/bundles.json index 37f016df88..6c4dafd07d 100644 --- a/bundles.json +++ b/bundles.json @@ -1,4 +1,5 @@ [ "platform/framework", - "platform/core" + "platform/core", + "platform/representation" ] \ No newline at end of file diff --git a/platform/representation/test/MCTIncludeSpec.js b/platform/representation/test/MCTIncludeSpec.js new file mode 100644 index 0000000000..e09acf8817 --- /dev/null +++ b/platform/representation/test/MCTIncludeSpec.js @@ -0,0 +1,15 @@ +/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/ + +/** + * MCTIncudeSpec. Created by vwoeltje on 11/6/14. + */ +define( + ["../src/MCTInclude"], + function (MCTInclude) { + "use strict"; + + describe("", function () { + + }); + } +); \ No newline at end of file diff --git a/platform/representation/test/MCTRepresentationSpec.js b/platform/representation/test/MCTRepresentationSpec.js new file mode 100644 index 0000000000..5e79c6deeb --- /dev/null +++ b/platform/representation/test/MCTRepresentationSpec.js @@ -0,0 +1,15 @@ +/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/ + +/** + * MCTRepresentationSpec. Created by vwoeltje on 11/6/14. + */ +define( + ["../src/MCTRepresentation"], + function (MCTRepresentation) { + "use strict"; + + describe("", function () { + + }); + } +); \ No newline at end of file diff --git a/platform/representation/test/gestures/ContextMenuGestureSpec.js b/platform/representation/test/gestures/ContextMenuGestureSpec.js new file mode 100644 index 0000000000..a96800a27b --- /dev/null +++ b/platform/representation/test/gestures/ContextMenuGestureSpec.js @@ -0,0 +1,21 @@ +/*global define,Promise*/ + +/** + * Module defining ContextMenuGestureSpec. Created by vwoeltje on 11/22/14. + */ +define( + ["../../src/gestures/ContextMenuGesture"], + function (ContextMenuGesture) { + "use strict"; + + /** + * + * @constructor + */ + function ContextMenuGestureSpec() { + return {}; + } + + return ContextMenuGestureSpec; + } +); \ No newline at end of file diff --git a/platform/representation/test/gestures/DragGestureSpec.js b/platform/representation/test/gestures/DragGestureSpec.js new file mode 100644 index 0000000000..1affab23d4 --- /dev/null +++ b/platform/representation/test/gestures/DragGestureSpec.js @@ -0,0 +1,15 @@ +/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/ + +/** + * DragGestureSpec. Created by vwoeltje on 11/6/14. + */ +define( + ["../../src/gestures/DragGesture"], + function (DragGesture) { + "use strict"; + + describe("", function () { + + }); + } +); \ No newline at end of file diff --git a/platform/representation/test/gestures/DropGestureSpec.js b/platform/representation/test/gestures/DropGestureSpec.js new file mode 100644 index 0000000000..42bcbedead --- /dev/null +++ b/platform/representation/test/gestures/DropGestureSpec.js @@ -0,0 +1,15 @@ +/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/ + +/** + * DropGestureSpec. Created by vwoeltje on 11/6/14. + */ +define( + ["../../src/gestures/DropGesture"], + function (DropGesture) { + "use strict"; + + describe("", function () { + + }); + } +); \ No newline at end of file diff --git a/platform/representation/test/suite.json b/platform/representation/test/suite.json new file mode 100644 index 0000000000..ab3c83ac32 --- /dev/null +++ b/platform/representation/test/suite.json @@ -0,0 +1,7 @@ +[ + "gestures/ContextMenuGesture", + "gestures/DragGesture", + "gestures/DropGesture", + "MCTInclude", + "MCTRepresentation" +] \ No newline at end of file