From 3ffa6f70aa657fdbab31d13cbfac2810d7b4eac4 Mon Sep 17 00:00:00 2001 From: Victor Woeltjen Date: Thu, 19 Nov 2015 13:47:39 -0800 Subject: [PATCH] [Status] Add empty specs --- platform/status/test/StatusCapabilitySpec.js | 32 +++++++++++++++++++ platform/status/test/StatusRepresenterSpec.js | 32 +++++++++++++++++++ platform/status/test/StatusServiceSpec.js | 32 +++++++++++++++++++ platform/status/test/suite.json | 5 +++ 4 files changed, 101 insertions(+) create mode 100644 platform/status/test/StatusCapabilitySpec.js create mode 100644 platform/status/test/StatusRepresenterSpec.js create mode 100644 platform/status/test/StatusServiceSpec.js create mode 100644 platform/status/test/suite.json diff --git a/platform/status/test/StatusCapabilitySpec.js b/platform/status/test/StatusCapabilitySpec.js new file mode 100644 index 0000000000..f016ebfa89 --- /dev/null +++ b/platform/status/test/StatusCapabilitySpec.js @@ -0,0 +1,32 @@ +/***************************************************************************** + * Open MCT Web, Copyright (c) 2014-2015, United States Government + * as represented by the Administrator of the National Aeronautics and Space + * Administration. All rights reserved. + * + * Open MCT Web is licensed under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * http://www.apache.org/licenses/LICENSE-2.0. + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + * Open MCT Web includes source code licensed under additional open source + * licenses. See the Open Source Licenses file (LICENSES.md) included with + * this source code distribution or the Licensing information page available + * at runtime from the About dialog for additional information. + *****************************************************************************/ +/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/ + +define( + ["../src/StatusCapability"], + function (StatusCapability) { + "use strict"; + + describe("The status capability", function () { + }); + } +); diff --git a/platform/status/test/StatusRepresenterSpec.js b/platform/status/test/StatusRepresenterSpec.js new file mode 100644 index 0000000000..cd058401c1 --- /dev/null +++ b/platform/status/test/StatusRepresenterSpec.js @@ -0,0 +1,32 @@ +/***************************************************************************** + * Open MCT Web, Copyright (c) 2014-2015, United States Government + * as represented by the Administrator of the National Aeronautics and Space + * Administration. All rights reserved. + * + * Open MCT Web is licensed under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * http://www.apache.org/licenses/LICENSE-2.0. + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + * Open MCT Web includes source code licensed under additional open source + * licenses. See the Open Source Licenses file (LICENSES.md) included with + * this source code distribution or the Licensing information page available + * at runtime from the About dialog for additional information. + *****************************************************************************/ +/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/ + +define( + ["../src/StatusRepresenter"], + function (StatusRepresenter) { + "use strict"; + + describe("The status representer", function () { + }); + } +); diff --git a/platform/status/test/StatusServiceSpec.js b/platform/status/test/StatusServiceSpec.js new file mode 100644 index 0000000000..f800002551 --- /dev/null +++ b/platform/status/test/StatusServiceSpec.js @@ -0,0 +1,32 @@ +/***************************************************************************** + * Open MCT Web, Copyright (c) 2014-2015, United States Government + * as represented by the Administrator of the National Aeronautics and Space + * Administration. All rights reserved. + * + * Open MCT Web is licensed under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * http://www.apache.org/licenses/LICENSE-2.0. + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + * Open MCT Web includes source code licensed under additional open source + * licenses. See the Open Source Licenses file (LICENSES.md) included with + * this source code distribution or the Licensing information page available + * at runtime from the About dialog for additional information. + *****************************************************************************/ +/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/ + +define( + ["../src/StatusService"], + function (StatusService) { + "use strict"; + + describe("The status service", function () { + }); + } +); diff --git a/platform/status/test/suite.json b/platform/status/test/suite.json new file mode 100644 index 0000000000..8b0cf2fd26 --- /dev/null +++ b/platform/status/test/suite.json @@ -0,0 +1,5 @@ +[ + "StatusCapability", + "StatusRepresenter", + "StatusService" +]