mirror of
https://github.com/nasa/openmct.git
synced 2025-04-07 19:34:25 +00:00
[Framework] Add skeleton specs
Add empty specs for all classes introduced for the framework layer, WTD-518. Note that Main is omitted, as this launches the full application.
This commit is contained in:
parent
b0bd9c5cf1
commit
e2f8b1eef9
15
platform/framework/test/ConstantsSpec.js
Normal file
15
platform/framework/test/ConstantsSpec.js
Normal file
@ -0,0 +1,15 @@
|
||||
/*global define,Promise,describe,it,expect,beforeEach*/
|
||||
|
||||
/**
|
||||
* Module defining ConstantsSpec. Created by vwoeltje on 11/6/14.
|
||||
*/
|
||||
define(
|
||||
["../src/Constants"],
|
||||
function (Constants) {
|
||||
"use strict";
|
||||
|
||||
describe("Framework constants", function () {
|
||||
|
||||
});
|
||||
}
|
||||
);
|
15
platform/framework/test/FrameworkInitializerSpec.js
Normal file
15
platform/framework/test/FrameworkInitializerSpec.js
Normal file
@ -0,0 +1,15 @@
|
||||
/*global define,Promise,describe,it,expect,beforeEach*/
|
||||
|
||||
/**
|
||||
* FrameworkInitializerSpec. Created by vwoeltje on 11/6/14.
|
||||
*/
|
||||
define(
|
||||
[],
|
||||
function () {
|
||||
"use strict";
|
||||
|
||||
describe("", function () {
|
||||
|
||||
});
|
||||
}
|
||||
);
|
@ -0,0 +1,15 @@
|
||||
/*global define,Promise,describe,it,expect,beforeEach*/
|
||||
|
||||
/**
|
||||
* ApplicationBootstrapperSpec. Created by vwoeltje on 11/6/14.
|
||||
*/
|
||||
define(
|
||||
[],
|
||||
function () {
|
||||
"use strict";
|
||||
|
||||
describe("", function () {
|
||||
|
||||
});
|
||||
}
|
||||
);
|
15
platform/framework/test/load/BundleLoaderSpec.js
Normal file
15
platform/framework/test/load/BundleLoaderSpec.js
Normal file
@ -0,0 +1,15 @@
|
||||
/*global define,Promise,describe,it,expect,beforeEach*/
|
||||
|
||||
/**
|
||||
* BundleLoaderSpec. Created by vwoeltje on 11/6/14.
|
||||
*/
|
||||
define(
|
||||
[],
|
||||
function () {
|
||||
"use strict";
|
||||
|
||||
describe("", function () {
|
||||
|
||||
});
|
||||
}
|
||||
);
|
15
platform/framework/test/load/BundleSpec.js
Normal file
15
platform/framework/test/load/BundleSpec.js
Normal file
@ -0,0 +1,15 @@
|
||||
/*global define,Promise,describe,it,expect,beforeEach*/
|
||||
|
||||
/**
|
||||
* BundleSpec. Created by vwoeltje on 11/6/14.
|
||||
*/
|
||||
define(
|
||||
[],
|
||||
function () {
|
||||
"use strict";
|
||||
|
||||
describe("", function () {
|
||||
|
||||
});
|
||||
}
|
||||
);
|
15
platform/framework/test/load/ExtensionSpec.js
Normal file
15
platform/framework/test/load/ExtensionSpec.js
Normal file
@ -0,0 +1,15 @@
|
||||
/*global define,Promise,describe,it,expect,beforeEach*/
|
||||
|
||||
/**
|
||||
* ExtensionSpec. Created by vwoeltje on 11/6/14.
|
||||
*/
|
||||
define(
|
||||
[],
|
||||
function () {
|
||||
"use strict";
|
||||
|
||||
describe("", function () {
|
||||
|
||||
});
|
||||
}
|
||||
);
|
15
platform/framework/test/register/CustomRegistrarsSpec.js
Normal file
15
platform/framework/test/register/CustomRegistrarsSpec.js
Normal file
@ -0,0 +1,15 @@
|
||||
/*global define,Promise,describe,it,expect,beforeEach*/
|
||||
|
||||
/**
|
||||
* CustomRegistrarsSpec. Created by vwoeltje on 11/6/14.
|
||||
*/
|
||||
define(
|
||||
[],
|
||||
function () {
|
||||
"use strict";
|
||||
|
||||
describe("", function () {
|
||||
|
||||
});
|
||||
}
|
||||
);
|
15
platform/framework/test/register/ExtensionRegistrarSpec.js
Normal file
15
platform/framework/test/register/ExtensionRegistrarSpec.js
Normal file
@ -0,0 +1,15 @@
|
||||
/*global define,Promise,describe,it,expect,beforeEach*/
|
||||
|
||||
/**
|
||||
* ExtensionRegistrarSpec. Created by vwoeltje on 11/6/14.
|
||||
*/
|
||||
define(
|
||||
[],
|
||||
function () {
|
||||
"use strict";
|
||||
|
||||
describe("", function () {
|
||||
|
||||
});
|
||||
}
|
||||
);
|
15
platform/framework/test/register/PartialConstructorSpec.js
Normal file
15
platform/framework/test/register/PartialConstructorSpec.js
Normal file
@ -0,0 +1,15 @@
|
||||
/*global define,Promise,describe,it,expect,beforeEach*/
|
||||
|
||||
/**
|
||||
* PartialConstructorSpec. Created by vwoeltje on 11/6/14.
|
||||
*/
|
||||
define(
|
||||
[],
|
||||
function () {
|
||||
"use strict";
|
||||
|
||||
describe("", function () {
|
||||
|
||||
});
|
||||
}
|
||||
);
|
15
platform/framework/test/register/ServiceCompositorSpec.js
Normal file
15
platform/framework/test/register/ServiceCompositorSpec.js
Normal file
@ -0,0 +1,15 @@
|
||||
/*global define,Promise,describe,it,expect,beforeEach*/
|
||||
|
||||
/**
|
||||
* ServiceCompositorSpec. Created by vwoeltje on 11/6/14.
|
||||
*/
|
||||
define(
|
||||
[],
|
||||
function () {
|
||||
"use strict";
|
||||
|
||||
describe("", function () {
|
||||
|
||||
});
|
||||
}
|
||||
);
|
15
platform/framework/test/resolve/BundleResolverSpec.js
Normal file
15
platform/framework/test/resolve/BundleResolverSpec.js
Normal file
@ -0,0 +1,15 @@
|
||||
/*global define,Promise,describe,it,expect,beforeEach*/
|
||||
|
||||
/**
|
||||
* BundleResolverSpec. Created by vwoeltje on 11/6/14.
|
||||
*/
|
||||
define(
|
||||
[],
|
||||
function () {
|
||||
"use strict";
|
||||
|
||||
describe("", function () {
|
||||
|
||||
});
|
||||
}
|
||||
);
|
15
platform/framework/test/resolve/ExtensionResolverSpec.js
Normal file
15
platform/framework/test/resolve/ExtensionResolverSpec.js
Normal file
@ -0,0 +1,15 @@
|
||||
/*global define,Promise,describe,it,expect,beforeEach*/
|
||||
|
||||
/**
|
||||
* ExtensionResolverSpec. Created by vwoeltje on 11/6/14.
|
||||
*/
|
||||
define(
|
||||
[],
|
||||
function () {
|
||||
"use strict";
|
||||
|
||||
describe("", function () {
|
||||
|
||||
});
|
||||
}
|
||||
);
|
15
platform/framework/test/resolve/ImplementationLoaderSpec.js
Normal file
15
platform/framework/test/resolve/ImplementationLoaderSpec.js
Normal file
@ -0,0 +1,15 @@
|
||||
/*global define,Promise,describe,it,expect,beforeEach*/
|
||||
|
||||
/**
|
||||
* ImplementationLoaderSpec. Created by vwoeltje on 11/6/14.
|
||||
*/
|
||||
define(
|
||||
[],
|
||||
function () {
|
||||
"use strict";
|
||||
|
||||
describe("", function () {
|
||||
|
||||
});
|
||||
}
|
||||
);
|
@ -1,3 +1,16 @@
|
||||
[
|
||||
"Temporary"
|
||||
"Temporary",
|
||||
"Constants",
|
||||
"FrameworkInitializer",
|
||||
"bootstrap/ApplicationBootstrapper",
|
||||
"load/Bundle",
|
||||
"load/BundleLoader",
|
||||
"load/Extension",
|
||||
"register/CustomRegistrars",
|
||||
"register/ExtensionRegistrar",
|
||||
"register/PartialConstructor",
|
||||
"register/ServiceCompositor",
|
||||
"resolve/BundleResolver",
|
||||
"resolve/ExtensionResolver",
|
||||
"resolve/ImplementationLoader"
|
||||
]
|
||||
|
Loading…
x
Reference in New Issue
Block a user