diff --git a/platform/containment/test/CapabilityTableSpec.js b/platform/containment/test/CapabilityTableSpec.js new file mode 100644 index 0000000000..a3888f6ae6 --- /dev/null +++ b/platform/containment/test/CapabilityTableSpec.js @@ -0,0 +1,11 @@ +/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/ + +define( + ["../src/CapabilityTable"], + function (CapabilityTable) { + "use strict"; + describe("Composition policy's capability table", function () { + + }); + } +); \ No newline at end of file diff --git a/platform/containment/test/ComposeActionPolicySpec.js b/platform/containment/test/ComposeActionPolicySpec.js new file mode 100644 index 0000000000..51c2086ddf --- /dev/null +++ b/platform/containment/test/ComposeActionPolicySpec.js @@ -0,0 +1,11 @@ +/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/ + +define( + ["../src/ComposeActionPolicy"], + function (ComposeActionPolicy) { + "use strict"; + describe("The compose action policy", function () { + + }); + } +); \ No newline at end of file diff --git a/platform/containment/test/CompositionPolicySpec.js b/platform/containment/test/CompositionPolicySpec.js new file mode 100644 index 0000000000..d010b97cff --- /dev/null +++ b/platform/containment/test/CompositionPolicySpec.js @@ -0,0 +1,11 @@ +/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/ + +define( + ["../src/CompositionPolicy"], + function (CompositionPolicy) { + "use strict"; + describe("Composition policy", function () { + + }); + } +); \ No newline at end of file diff --git a/platform/containment/test/ContainmentTableSpec.js b/platform/containment/test/ContainmentTableSpec.js new file mode 100644 index 0000000000..1e5b718a0d --- /dev/null +++ b/platform/containment/test/ContainmentTableSpec.js @@ -0,0 +1,11 @@ +/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/ + +define( + ["../src/ContainmentTable"], + function (ContainmentTable) { + "use strict"; + describe("Composition policy's containment table", function () { + + }); + } +); \ No newline at end of file diff --git a/platform/containment/test/suite.json b/platform/containment/test/suite.json new file mode 100644 index 0000000000..a82d203c53 --- /dev/null +++ b/platform/containment/test/suite.json @@ -0,0 +1,6 @@ +[ + "CapabilityTable", + "ComposeActionPolicy", + "CompositionPolicy", + "ContainmentTable" +] \ No newline at end of file