mirror of
https://github.com/Karaka-Management/jsOMS.git
synced 2026-01-11 17:58:41 +00:00
Make tests part of the repos
This commit is contained in:
parent
e73d8d821f
commit
410f088149
12
tests/3D/3DViewerTest.js
Normal file
12
tests/3D/3DViewerTest.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('3DViewerTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
});
|
||||
12
tests/3D/Loader/DdsLoaderTest.js
Normal file
12
tests/3D/Loader/DdsLoaderTest.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('DdsLoaderTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
});
|
||||
12
tests/3D/Loader/MtlLoaderTest.js
Normal file
12
tests/3D/Loader/MtlLoaderTest.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('MtlLoaderTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
});
|
||||
12
tests/3D/Loader/ObjLoaderTest.js
Normal file
12
tests/3D/Loader/ObjLoaderTest.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('ObjLoaderTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
});
|
||||
12
tests/3D/Loader/StlLoaderTest.js
Normal file
12
tests/3D/Loader/StlLoaderTest.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('StlLoaderTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
});
|
||||
12
tests/Account/AccountManagerTest.js
Normal file
12
tests/Account/AccountManagerTest.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('AccountManagerTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
});
|
||||
12
tests/Account/AccountTypeTest.enum
Normal file
12
tests/Account/AccountTypeTest.enum
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('AccountTypeTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
}
|
||||
12
tests/Animation/AnimationTest.js
Normal file
12
tests/Animation/AnimationTest.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('AnimationTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
});
|
||||
12
tests/Animation/Canvas/ParticleAnimationTest.js
Normal file
12
tests/Animation/Canvas/ParticleAnimationTest.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('ParticleAnimationTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
});
|
||||
12
tests/Animation/Canvas/ParticleTest.js
Normal file
12
tests/Animation/Canvas/ParticleTest.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('ParticleTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
});
|
||||
33
tests/Asset/AssetManagerTest.js
Normal file
33
tests/Asset/AssetManagerTest.js
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
describe('AssetManagerTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
describe('testDefault', function ()
|
||||
{
|
||||
it('Testing default functionality', function ()
|
||||
{
|
||||
let asset = new jsOMS.Asset.AssetManager();
|
||||
expect(asset.get('invalid')).toBe(null);
|
||||
expect(asset.remove('invalid')).toBeFalsy();
|
||||
});
|
||||
});
|
||||
|
||||
describe('testAssetInteraction', function ()
|
||||
{
|
||||
it('Testing asset interaction functionality', function ()
|
||||
{
|
||||
let asset = new jsOMS.Asset.AssetManager();
|
||||
expect(asset.get('../../../jsOMS/Utils/oLib.js')).not.toBe(null);
|
||||
expect(asset.remove('../../../jsOMS/Utils/oLib.js')).toBeTruthy();
|
||||
expect(asset.load('../../../jsOMS/Utils/oLib.js', 'js')).not.toBeFalsy();
|
||||
});
|
||||
});
|
||||
});
|
||||
12
tests/Auth/AuthTest.js
Normal file
12
tests/Auth/AuthTest.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('AuthTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
});
|
||||
12
tests/AutoloaderTest.js
Normal file
12
tests/AutoloaderTest.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('AutoloaderTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
});
|
||||
12
tests/Chart/AreaChartTest.js
Normal file
12
tests/Chart/AreaChartTest.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('AreaChartTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
});
|
||||
12
tests/Chart/BarChartTest.js
Normal file
12
tests/Chart/BarChartTest.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('BarChartTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
});
|
||||
12
tests/Chart/BoxplotChartTest.js
Normal file
12
tests/Chart/BoxplotChartTest.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('BoxplotChartTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
});
|
||||
12
tests/Chart/CalendarChartTest.js
Normal file
12
tests/Chart/CalendarChartTest.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('CalendarChartTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
});
|
||||
12
tests/Chart/CandlestickChartTest.js
Normal file
12
tests/Chart/CandlestickChartTest.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('CandlestickChartTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
});
|
||||
12
tests/Chart/ChartLegendTest.js
Normal file
12
tests/Chart/ChartLegendTest.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('ChartLegendTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
});
|
||||
12
tests/Chart/ColumnChartTest.js
Normal file
12
tests/Chart/ColumnChartTest.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('ColumnChartTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
});
|
||||
12
tests/Chart/DiffAreaChartTest.js
Normal file
12
tests/Chart/DiffAreaChartTest.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('DiffAreaChartTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
});
|
||||
12
tests/Chart/DonutChartTest.js
Normal file
12
tests/Chart/DonutChartTest.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('DonutChartTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
});
|
||||
12
tests/Chart/FillGougeChartTest.js
Normal file
12
tests/Chart/FillGougeChartTest.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('FillGougeChartTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
});
|
||||
12
tests/Chart/GanttChartTest.js
Normal file
12
tests/Chart/GanttChartTest.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('GanttChartTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
});
|
||||
12
tests/Chart/GougeChartTest.js
Normal file
12
tests/Chart/GougeChartTest.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('GougeChartTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
});
|
||||
12
tests/Chart/GroupedBarChartTest.js
Normal file
12
tests/Chart/GroupedBarChartTest.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('GroupedBarChartTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
});
|
||||
12
tests/Chart/GroupedColumnChartTest.js
Normal file
12
tests/Chart/GroupedColumnChartTest.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('GroupedColumnChartTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
});
|
||||
12
tests/Chart/LineChartTest.js
Normal file
12
tests/Chart/LineChartTest.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('LineChartTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
});
|
||||
12
tests/Chart/OhlcChartTest.js
Normal file
12
tests/Chart/OhlcChartTest.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('OhlcChartTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
});
|
||||
12
tests/Chart/PieChartTest.js
Normal file
12
tests/Chart/PieChartTest.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('PieChartTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
});
|
||||
12
tests/Chart/PositionEnumTest.js
Normal file
12
tests/Chart/PositionEnumTest.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('PositionEnumTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
});
|
||||
12
tests/Chart/PositionTest.enum
Normal file
12
tests/Chart/PositionTest.enum
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('PositionTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
}
|
||||
12
tests/Chart/PyramidChartTest.js
Normal file
12
tests/Chart/PyramidChartTest.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('PyramidChartTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
});
|
||||
12
tests/Chart/RadarChartTest.js
Normal file
12
tests/Chart/RadarChartTest.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('RadarChartTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
});
|
||||
12
tests/Chart/ScatterplotChartTest.js
Normal file
12
tests/Chart/ScatterplotChartTest.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('ScatterplotChartTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
});
|
||||
12
tests/Chart/StackedAreaChartTest.js
Normal file
12
tests/Chart/StackedAreaChartTest.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('StackedAreaChartTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
});
|
||||
12
tests/Chart/StackedBarChartTest.js
Normal file
12
tests/Chart/StackedBarChartTest.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('StackedBarChartTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
});
|
||||
12
tests/Chart/StackedColumnChartTest.js
Normal file
12
tests/Chart/StackedColumnChartTest.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('StackedColumnChartTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
});
|
||||
12
tests/Chart/TextElementTest.js
Normal file
12
tests/Chart/TextElementTest.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('TextElementTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
});
|
||||
12
tests/Chart/TreeChartTest.js
Normal file
12
tests/Chart/TreeChartTest.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('TreeChartTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
});
|
||||
12
tests/Chart/VWaterfallChartTest.js
Normal file
12
tests/Chart/VWaterfallChartTest.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('VWaterfallChartTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
});
|
||||
12
tests/Chart/WaterfallChartTest.js
Normal file
12
tests/Chart/WaterfallChartTest.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('WaterfallChartTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
});
|
||||
99
tests/Chart/chart-column.htm
Normal file
99
tests/Chart/chart-column.htm
Normal file
|
|
@ -0,0 +1,99 @@
|
|||
<html>
|
||||
<head>
|
||||
<style>
|
||||
svg {
|
||||
font-family: "Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif;
|
||||
}
|
||||
|
||||
svg .axis {
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
svg .title {
|
||||
font-size: 25px;
|
||||
}
|
||||
|
||||
svg .subtitle {
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
svg .footer {
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
svg .axis path,
|
||||
svg .axis line {
|
||||
fill: none;
|
||||
stroke: #000;
|
||||
shape-rendering: crispEdges;
|
||||
}
|
||||
|
||||
svg .line {
|
||||
fill: none;
|
||||
stroke: steelblue;
|
||||
}
|
||||
|
||||
svg .tick > line {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
svg rect.zoom-panel {
|
||||
cursor: move;
|
||||
fill: none;
|
||||
pointer-events: all;
|
||||
}
|
||||
|
||||
svg .dot {
|
||||
stroke-width: 2px;
|
||||
fill: #fff;
|
||||
}
|
||||
|
||||
.dataPoint:hover {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
svg .dataPoint-dot {
|
||||
stroke-width: 3px;
|
||||
fill: #fff;
|
||||
}
|
||||
|
||||
svg .dot:hover {
|
||||
stroke-width: 3px;
|
||||
fill: #000;
|
||||
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.grid .tick {
|
||||
stroke: lightgrey;
|
||||
stroke-opacity: 0.7;
|
||||
shape-rendering: crispEdges;
|
||||
}
|
||||
.grid path {
|
||||
stroke-width: 0;
|
||||
}
|
||||
|
||||
div.tooltip {
|
||||
color: #fff;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
text-align: left;
|
||||
padding: 5px;
|
||||
font: 12px sans-serif;
|
||||
background: #363636;
|
||||
border: 0;
|
||||
border-radius: 3px;
|
||||
pointer-events: none;
|
||||
}
|
||||
</style>
|
||||
<script src="http://d3js.org/d3.v3.min.js"></script>
|
||||
<script>
|
||||
jsOMS = {};
|
||||
</script>
|
||||
<script src="../../../../jsOMS/Chart/Position.enum.js"></script>
|
||||
<script src="../../../../jsOMS/Chart/Chart.js"></script>
|
||||
|
||||
<body>
|
||||
<div id="chart" style="width: 100%; height: 100%"></div>
|
||||
<script src="../../../../jsOMS/Chart/ColumnChart.js"></script>
|
||||
95
tests/Chart/chart-line.htm
Normal file
95
tests/Chart/chart-line.htm
Normal file
|
|
@ -0,0 +1,95 @@
|
|||
<html>
|
||||
<head>
|
||||
<style>
|
||||
svg .axis {
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
svg .title {
|
||||
font-size: 25px;
|
||||
}
|
||||
|
||||
svg .subtitle {
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
svg .footer {
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
svg .axis path,
|
||||
svg .axis line {
|
||||
fill: none;
|
||||
stroke: #000;
|
||||
shape-rendering: crispEdges;
|
||||
}
|
||||
|
||||
svg .line {
|
||||
fill: none;
|
||||
stroke: steelblue;
|
||||
}
|
||||
|
||||
svg .tick > line {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
svg rect.zoom-panel {
|
||||
cursor: move;
|
||||
fill: none;
|
||||
pointer-events: all;
|
||||
}
|
||||
|
||||
svg .dot {
|
||||
stroke-width: 2px;
|
||||
fill: #fff;
|
||||
}
|
||||
|
||||
.dataPoint:hover {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
svg .dataPoint-dot {
|
||||
stroke-width: 3px;
|
||||
fill: #fff;
|
||||
}
|
||||
|
||||
svg .dot:hover {
|
||||
stroke-width: 3px;
|
||||
fill: #000;
|
||||
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.grid .tick {
|
||||
stroke: lightgrey;
|
||||
stroke-opacity: 0.7;
|
||||
shape-rendering: crispEdges;
|
||||
}
|
||||
.grid path {
|
||||
stroke-width: 0;
|
||||
}
|
||||
|
||||
div.tooltip {
|
||||
color: #fff;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
text-align: left;
|
||||
padding: 5px;
|
||||
font: 12px sans;
|
||||
background: #363636;
|
||||
border: 0;
|
||||
border-radius: 3px;
|
||||
pointer-events: none;
|
||||
}
|
||||
</style>
|
||||
<script src="http://d3js.org/d3.v3.min.js"></script>
|
||||
<script>
|
||||
jsOMS = {};
|
||||
</script>
|
||||
<script src="../../../../jsOMS/Chart/Position.enum.js"></script>
|
||||
<script src="../../../../jsOMS/Chart/Chart.js"></script>
|
||||
|
||||
<body>
|
||||
<div id="chart" style="width: 100%; height: 100%"></div>
|
||||
<script src="../../../../jsOMS/Chart/LineChart.js"></script>
|
||||
99
tests/Chart/chart-pie.htm
Normal file
99
tests/Chart/chart-pie.htm
Normal file
|
|
@ -0,0 +1,99 @@
|
|||
<html>
|
||||
<head>
|
||||
<style>
|
||||
svg {
|
||||
font-family: "Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif;
|
||||
}
|
||||
|
||||
svg .axis {
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
svg .title {
|
||||
font-size: 25px;
|
||||
}
|
||||
|
||||
svg .subtitle {
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
svg .footer {
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
svg .axis path,
|
||||
svg .axis line {
|
||||
fill: none;
|
||||
stroke: #000;
|
||||
shape-rendering: crispEdges;
|
||||
}
|
||||
|
||||
svg .line {
|
||||
fill: none;
|
||||
stroke: steelblue;
|
||||
}
|
||||
|
||||
svg .tick > line {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
svg rect.zoom-panel {
|
||||
cursor: move;
|
||||
fill: none;
|
||||
pointer-events: all;
|
||||
}
|
||||
|
||||
svg .dot {
|
||||
stroke-width: 2px;
|
||||
fill: #fff;
|
||||
}
|
||||
|
||||
.dataPoint:hover {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
svg .dataPoint-dot {
|
||||
stroke-width: 3px;
|
||||
fill: #fff;
|
||||
}
|
||||
|
||||
svg .dot:hover {
|
||||
stroke-width: 3px;
|
||||
fill: #000;
|
||||
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.grid .tick {
|
||||
stroke: lightgrey;
|
||||
stroke-opacity: 0.7;
|
||||
shape-rendering: crispEdges;
|
||||
}
|
||||
.grid path {
|
||||
stroke-width: 0;
|
||||
}
|
||||
|
||||
div.tooltip {
|
||||
color: #fff;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
text-align: left;
|
||||
padding: 5px;
|
||||
font-size: 12px;
|
||||
background: #363636;
|
||||
border: 0;
|
||||
border-radius: 3px;
|
||||
pointer-events: none;
|
||||
}
|
||||
</style>
|
||||
<script src="http://d3js.org/d3.v3.min.js"></script>
|
||||
<script>
|
||||
jsOMS = {};
|
||||
</script>
|
||||
<script src="../../../../jsOMS/Chart/Position.enum.js"></script>
|
||||
<script src="../../../../jsOMS/Chart/Chart.js"></script>
|
||||
|
||||
<body>
|
||||
<div id="chart" style="width: 100%; height: 100%"></div>
|
||||
<script src="../../../../jsOMS/Chart/PieChart.js"></script>
|
||||
95
tests/Chart/chart-radar.htm
Normal file
95
tests/Chart/chart-radar.htm
Normal file
|
|
@ -0,0 +1,95 @@
|
|||
<html>
|
||||
<head>
|
||||
<style>
|
||||
svg .axis {
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
svg .title {
|
||||
font-size: 25px;
|
||||
}
|
||||
|
||||
svg .subtitle {
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
svg .footer {
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
svg .axis path,
|
||||
svg .axis line {
|
||||
fill: none;
|
||||
stroke: #000;
|
||||
shape-rendering: crispEdges;
|
||||
}
|
||||
|
||||
svg .line {
|
||||
fill: none;
|
||||
stroke: steelblue;
|
||||
}
|
||||
|
||||
svg .tick > line {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
svg rect.zoom-panel {
|
||||
cursor: move;
|
||||
fill: none;
|
||||
pointer-events: all;
|
||||
}
|
||||
|
||||
svg .dot {
|
||||
stroke-width: 2px;
|
||||
fill: #fff;
|
||||
}
|
||||
|
||||
.dataPoint:hover {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
svg .dataPoint-dot {
|
||||
stroke-width: 3px;
|
||||
fill: #fff;
|
||||
}
|
||||
|
||||
svg .dot:hover {
|
||||
stroke-width: 3px;
|
||||
fill: #000;
|
||||
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.grid .tick {
|
||||
stroke: lightgrey;
|
||||
stroke-opacity: 0.7;
|
||||
shape-rendering: crispEdges;
|
||||
}
|
||||
.grid path {
|
||||
stroke-width: 0;
|
||||
}
|
||||
|
||||
div.tooltip {
|
||||
color: #fff;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
text-align: left;
|
||||
padding: 5px;
|
||||
font: 12px sans;
|
||||
background: #363636;
|
||||
border: 0;
|
||||
border-radius: 3px;
|
||||
pointer-events: none;
|
||||
}
|
||||
</style>
|
||||
<script src="http://d3js.org/d3.v3.min.js"></script>
|
||||
<script>
|
||||
jsOMS = {};
|
||||
</script>
|
||||
<script src="../../../../jsOMS/Chart/Position.enum.js"></script>
|
||||
<script src="../../../../jsOMS/Chart/Chart.js"></script>
|
||||
|
||||
<body>
|
||||
<div id="chart" style="width: 100%; height: 100%"></div>
|
||||
<script src="../../../../jsOMS/Chart/RadarChart.js"></script>
|
||||
41
tests/Config/OptionsTest.js
Normal file
41
tests/Config/OptionsTest.js
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
describe('OptionsTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
describe('testDefault', function ()
|
||||
{
|
||||
it('Testing default functionality', function ()
|
||||
{
|
||||
let option = new jsOMS.Config.Options();
|
||||
expect(option.get('invalid')).toBe(null);
|
||||
expect(option.remove('invalid')).toBeFalsy();
|
||||
});
|
||||
});
|
||||
|
||||
describe('testSetGet', function ()
|
||||
{
|
||||
it('Testing set/get functionality', function ()
|
||||
{
|
||||
let option = new jsOMS.Config.Options();
|
||||
|
||||
expect(option.set('a', 2)).toBeTruthy();
|
||||
expect(option.get('a')).toBe(2);
|
||||
expect(option.set('a', 3)).toBeFalsy();
|
||||
expect(option.get('a')).toBe(2);
|
||||
expect(option.set('a', 3, true)).toBeTruthy();
|
||||
expect(option.get('a')).toBe(3);
|
||||
|
||||
expect(option.remove('a')).toBeTruthy();
|
||||
expect(option.get('a')).toBe(null);
|
||||
expect(option.remove('a')).toBeFalsy();
|
||||
});
|
||||
});
|
||||
});
|
||||
12
tests/DataStorage/CacheManagerTest.js
Normal file
12
tests/DataStorage/CacheManagerTest.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('CacheManagerTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
});
|
||||
12
tests/DataStorage/CookieJarTest.js
Normal file
12
tests/DataStorage/CookieJarTest.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('CookieJarTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
});
|
||||
12
tests/DataStorage/LocalStorageTest.js
Normal file
12
tests/DataStorage/LocalStorageTest.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('LocalStorageTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
});
|
||||
12
tests/DataStorage/StorageManagerTest.js
Normal file
12
tests/DataStorage/StorageManagerTest.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('StorageManagerTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
});
|
||||
12
tests/Dispatcher/DispatcherTest.js
Normal file
12
tests/Dispatcher/DispatcherTest.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('DispatcherTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
});
|
||||
12
tests/Event/EventManagerTest.js
Normal file
12
tests/Event/EventManagerTest.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('EventManagerTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
});
|
||||
12
tests/Log/LogLevelTest.enum
Normal file
12
tests/Log/LogLevelTest.enum
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('LogLevelTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
}
|
||||
12
tests/Log/LogLevelTest.enum.js
Normal file
12
tests/Log/LogLevelTest.enum.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('LogLevelTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
});
|
||||
12
tests/Log/LoggerTest.js
Normal file
12
tests/Log/LoggerTest.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('LoggerTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
});
|
||||
12
tests/Math/MathProcessorTest.js
Normal file
12
tests/Math/MathProcessorTest.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('MathProcessorTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
});
|
||||
12
tests/Math/Stochastic/AverageTest.js
Normal file
12
tests/Math/Stochastic/AverageTest.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('AverageTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
});
|
||||
12
tests/Math/Stochastic/Forecast/LinearRegressionTest.js
Normal file
12
tests/Math/Stochastic/Forecast/LinearRegressionTest.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('LinearRegressionTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
});
|
||||
12
tests/Media/Audio/UISoundTest.js
Normal file
12
tests/Media/Audio/UISoundTest.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('UISoundTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
});
|
||||
12
tests/Media/Video/CameraRecognitionTest.js
Normal file
12
tests/Media/Video/CameraRecognitionTest.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('CameraRecognitionTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
}
|
||||
12
tests/Message/Notification/App/AppNotificationTest.js
Normal file
12
tests/Message/Notification/App/AppNotificationTest.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('AppNotificationTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
}
|
||||
|
|
@ -0,0 +1,12 @@
|
|||
describe('BrowserNotificationTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
}
|
||||
12
tests/Message/Notification/NotificationManagerTest.js
Normal file
12
tests/Message/Notification/NotificationManagerTest.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('NotificationManagerTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
}
|
||||
12
tests/Message/Notification/NotificationMessageTest.js
Normal file
12
tests/Message/Notification/NotificationMessageTest.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('NotificationMessageTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
}
|
||||
12
tests/Message/Notification/NotificationTypeTest.enum
Normal file
12
tests/Message/Notification/NotificationTypeTest.enum
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('NotificationTypeTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
}
|
||||
12
tests/Message/Request/BrowserTypeTest.enum
Normal file
12
tests/Message/Request/BrowserTypeTest.enum
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('BrowserTypeTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
}
|
||||
12
tests/Message/Request/OSTypeTest.enum
Normal file
12
tests/Message/Request/OSTypeTest.enum
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('OSTypeTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
}
|
||||
12
tests/Message/Request/RequestDataTest.enum
Normal file
12
tests/Message/Request/RequestDataTest.enum
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('RequestDataTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
}
|
||||
12
tests/Message/Request/RequestMethodTest.enum
Normal file
12
tests/Message/Request/RequestMethodTest.enum
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('RequestMethodTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
}
|
||||
12
tests/Message/Request/RequestTest.js
Normal file
12
tests/Message/Request/RequestTest.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('RequestTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
});
|
||||
12
tests/Message/Request/RequestTypeTest.enum
Normal file
12
tests/Message/Request/RequestTypeTest.enum
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('RequestTypeTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
}
|
||||
12
tests/Message/Response/ResponseManagerTest.js
Normal file
12
tests/Message/Response/ResponseManagerTest.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('ResponseManagerTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
});
|
||||
12
tests/Message/Response/ResponseResultTypeTest.enum
Normal file
12
tests/Message/Response/ResponseResultTypeTest.enum
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('ResponseResultTypeTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
}
|
||||
12
tests/Message/Response/ResponseTest.js
Normal file
12
tests/Message/Response/ResponseTest.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('ResponseTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
});
|
||||
12
tests/Message/Response/ResponseTypeTest.enum
Normal file
12
tests/Message/Response/ResponseTypeTest.enum
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('ResponseTypeTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
}
|
||||
12
tests/Models/AccountTest.js
Normal file
12
tests/Models/AccountTest.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('AccountTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
});
|
||||
12
tests/Module/ModuleFactoryTest.js
Normal file
12
tests/Module/ModuleFactoryTest.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('ModuleFactoryTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
});
|
||||
12
tests/Module/ModuleManagerTest.js
Normal file
12
tests/Module/ModuleManagerTest.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('ModuleManagerTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
});
|
||||
12
tests/Route/RouteTest.js
Normal file
12
tests/Route/RouteTest.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('RouteTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
});
|
||||
12
tests/Security/Hash/Sha1Test.js
Normal file
12
tests/Security/Hash/Sha1Test.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('Sha1Test', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
});
|
||||
12
tests/Security/Hash/Sha1bTest.js
Normal file
12
tests/Security/Hash/Sha1bTest.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('Sha1bTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
});
|
||||
12
tests/Socket/Client/ClientTest.js
Normal file
12
tests/Socket/Client/ClientTest.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('ClientTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
});
|
||||
36
tests/SpecRunner.html
Normal file
36
tests/SpecRunner.html
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Framework Test Suit</title>
|
||||
|
||||
<link rel="shortcut icon" type="image/png" href="../jasmine/lib/jasmine-2.7.0/jasmine_favicon.png">
|
||||
<link rel="stylesheet" href="../jasmine/lib/jasmine-2.7.0/jasmine.css">
|
||||
|
||||
<!-- jasmine -->
|
||||
<script src="../jasmine/lib/jasmine-2.7.0/jasmine.js"></script>
|
||||
<script src="../jasmine/lib/jasmine-2.7.0/jasmine-html.js"></script>
|
||||
<script src="../jasmine/lib/jasmine-2.7.0/boot.js"></script>
|
||||
|
||||
<!-- include source files here... -->
|
||||
<script src="../../../jsOMS/Utils/oLib.js"></script>
|
||||
|
||||
<!-- include source files here... -->
|
||||
<script src="../../../jsOMS/Asset/AssetManager.js"></script>
|
||||
<script src="../../../jsOMS/Autoloader.js"></script>
|
||||
|
||||
<script src="../../../jsOMS/Uri/Http.js"></script>
|
||||
<script src="../../../jsOMS/Uri/UriFactory.js"></script>
|
||||
|
||||
<script src="../../../jsOMS/Views/FormView.js"></script>
|
||||
|
||||
<!-- include spec files here... -->
|
||||
<script src="Uri/HttpTest.js"></script>
|
||||
<script src="Uri/UriFactoryTest.js"></script>
|
||||
|
||||
<script src="UI/Views/FormViewTest.js"></script>
|
||||
<script src="UI/Asset/AssetManagerTest.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
</body>
|
||||
</html>
|
||||
12
tests/Spreadsheet/CellTest.js
Normal file
12
tests/Spreadsheet/CellTest.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('CellTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
});
|
||||
12
tests/Spreadsheet/FormattingTest.js
Normal file
12
tests/Spreadsheet/FormattingTest.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('FormattingTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
});
|
||||
12
tests/Spreadsheet/FunctionsTest.js
Normal file
12
tests/Spreadsheet/FunctionsTest.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('FunctionsTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
});
|
||||
12
tests/Spreadsheet/SheetTest.js
Normal file
12
tests/Spreadsheet/SheetTest.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('SheetTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
});
|
||||
12
tests/Spreadsheet/SpreadsheetTest.js
Normal file
12
tests/Spreadsheet/SpreadsheetTest.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('SpreadsheetTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
});
|
||||
12
tests/UI/ActionManagerTest.js
Normal file
12
tests/UI/ActionManagerTest.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('ActionManagerTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
});
|
||||
12
tests/UI/Component/AutocompleteTest.js
Normal file
12
tests/UI/Component/AutocompleteTest.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('AutocompleteTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
}
|
||||
12
tests/UI/Component/FormTest.js
Normal file
12
tests/UI/Component/FormTest.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('FormTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
}
|
||||
12
tests/UI/Component/InputTest.js
Normal file
12
tests/UI/Component/InputTest.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('InputTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
});
|
||||
12
tests/UI/Component/TabTest.js
Normal file
12
tests/UI/Component/TabTest.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('TabTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
}
|
||||
12
tests/UI/Component/TableTest.js
Normal file
12
tests/UI/Component/TableTest.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('TableTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
}
|
||||
12
tests/UI/Component/TagInputTest.js
Normal file
12
tests/UI/Component/TagInputTest.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('TagInputTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
}
|
||||
12
tests/UI/Component/TagListTest.js
Normal file
12
tests/UI/Component/TagListTest.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('TagListTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
}
|
||||
12
tests/UI/DragNDropTest.js
Normal file
12
tests/UI/DragNDropTest.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('DragNDropTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
});
|
||||
12
tests/UI/GeneralUITest.js
Normal file
12
tests/UI/GeneralUITest.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('GeneralUITest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
}
|
||||
12
tests/UI/Input/InputManagerTest.js
Normal file
12
tests/UI/Input/InputManagerTest.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
describe('InputManagerTest', function ()
|
||||
{
|
||||
"use strict";
|
||||
|
||||
beforeEach(function ()
|
||||
{
|
||||
});
|
||||
|
||||
afterEach(function ()
|
||||
{
|
||||
});
|
||||
});
|
||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user