[Containment] Add skeleton specs
Add empty specs for composition policy, WTD-962.
This commit is contained in:
11
platform/containment/test/CapabilityTableSpec.js
Normal file
11
platform/containment/test/CapabilityTableSpec.js
Normal file
@@ -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 () {
|
||||||
|
|
||||||
|
});
|
||||||
|
}
|
||||||
|
);
|
||||||
11
platform/containment/test/ComposeActionPolicySpec.js
Normal file
11
platform/containment/test/ComposeActionPolicySpec.js
Normal file
@@ -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 () {
|
||||||
|
|
||||||
|
});
|
||||||
|
}
|
||||||
|
);
|
||||||
11
platform/containment/test/CompositionPolicySpec.js
Normal file
11
platform/containment/test/CompositionPolicySpec.js
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/
|
||||||
|
|
||||||
|
define(
|
||||||
|
["../src/CompositionPolicy"],
|
||||||
|
function (CompositionPolicy) {
|
||||||
|
"use strict";
|
||||||
|
describe("Composition policy", function () {
|
||||||
|
|
||||||
|
});
|
||||||
|
}
|
||||||
|
);
|
||||||
11
platform/containment/test/ContainmentTableSpec.js
Normal file
11
platform/containment/test/ContainmentTableSpec.js
Normal file
@@ -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 () {
|
||||||
|
|
||||||
|
});
|
||||||
|
}
|
||||||
|
);
|
||||||
6
platform/containment/test/suite.json
Normal file
6
platform/containment/test/suite.json
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
[
|
||||||
|
"CapabilityTable",
|
||||||
|
"ComposeActionPolicy",
|
||||||
|
"CompositionPolicy",
|
||||||
|
"ContainmentTable"
|
||||||
|
]
|
||||||
Reference in New Issue
Block a user