mirror of
https://github.com/nasa/openmct.git
synced 2025-03-21 03:25:44 +00:00
[Containment] Add skeleton specs
Add empty specs for composition policy, WTD-962.
This commit is contained in:
parent
db57444738
commit
90b8f22c2d
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"
|
||||
]
|
Loading…
x
Reference in New Issue
Block a user