[Containment] Add skeleton specs

Add empty specs for composition policy, WTD-962.
This commit is contained in:
Victor Woeltjen 2015-04-10 18:09:02 -07:00
parent db57444738
commit 90b8f22c2d
5 changed files with 50 additions and 0 deletions

View 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 () {
});
}
);

View 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 () {
});
}
);

View 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 () {
});
}
);

View 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 () {
});
}
);

View File

@ -0,0 +1,6 @@
[
"CapabilityTable",
"ComposeActionPolicy",
"CompositionPolicy",
"ContainmentTable"
]