Make tests part of the repos

This commit is contained in:
Dennis Eichhorn 2018-01-14 15:43:55 +01:00
parent e73d8d821f
commit 410f088149
125 changed files with 2100 additions and 0 deletions

12
tests/3D/3DViewerTest.js Normal file
View File

@ -0,0 +1,12 @@
describe('3DViewerTest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
});

View File

@ -0,0 +1,12 @@
describe('DdsLoaderTest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
});

View File

@ -0,0 +1,12 @@
describe('MtlLoaderTest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
});

View File

@ -0,0 +1,12 @@
describe('ObjLoaderTest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
});

View File

@ -0,0 +1,12 @@
describe('StlLoaderTest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
});

View File

@ -0,0 +1,12 @@
describe('AccountManagerTest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
});

View File

@ -0,0 +1,12 @@
describe('AccountTypeTest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
}

View File

@ -0,0 +1,12 @@
describe('AnimationTest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
});

View File

@ -0,0 +1,12 @@
describe('ParticleAnimationTest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
});

View File

@ -0,0 +1,12 @@
describe('ParticleTest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
});

View 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
View File

@ -0,0 +1,12 @@
describe('AuthTest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
});

12
tests/AutoloaderTest.js Normal file
View File

@ -0,0 +1,12 @@
describe('AutoloaderTest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
});

View File

@ -0,0 +1,12 @@
describe('AreaChartTest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
});

View File

@ -0,0 +1,12 @@
describe('BarChartTest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
});

View File

@ -0,0 +1,12 @@
describe('BoxplotChartTest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
});

View File

@ -0,0 +1,12 @@
describe('CalendarChartTest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
});

View File

@ -0,0 +1,12 @@
describe('CandlestickChartTest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
});

View File

@ -0,0 +1,12 @@
describe('ChartLegendTest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
});

View File

@ -0,0 +1,12 @@
describe('ColumnChartTest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
});

View File

@ -0,0 +1,12 @@
describe('DiffAreaChartTest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
});

View File

@ -0,0 +1,12 @@
describe('DonutChartTest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
});

View File

@ -0,0 +1,12 @@
describe('FillGougeChartTest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
});

View File

@ -0,0 +1,12 @@
describe('GanttChartTest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
});

View File

@ -0,0 +1,12 @@
describe('GougeChartTest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
});

View File

@ -0,0 +1,12 @@
describe('GroupedBarChartTest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
});

View File

@ -0,0 +1,12 @@
describe('GroupedColumnChartTest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
});

View File

@ -0,0 +1,12 @@
describe('LineChartTest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
});

View File

@ -0,0 +1,12 @@
describe('OhlcChartTest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
});

View File

@ -0,0 +1,12 @@
describe('PieChartTest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
});

View File

@ -0,0 +1,12 @@
describe('PositionEnumTest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
});

View File

@ -0,0 +1,12 @@
describe('PositionTest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
}

View File

@ -0,0 +1,12 @@
describe('PyramidChartTest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
});

View File

@ -0,0 +1,12 @@
describe('RadarChartTest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
});

View File

@ -0,0 +1,12 @@
describe('ScatterplotChartTest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
});

View File

@ -0,0 +1,12 @@
describe('StackedAreaChartTest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
});

View File

@ -0,0 +1,12 @@
describe('StackedBarChartTest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
});

View File

@ -0,0 +1,12 @@
describe('StackedColumnChartTest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
});

View File

@ -0,0 +1,12 @@
describe('TextElementTest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
});

View File

@ -0,0 +1,12 @@
describe('TreeChartTest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
});

View File

@ -0,0 +1,12 @@
describe('VWaterfallChartTest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
});

View File

@ -0,0 +1,12 @@
describe('WaterfallChartTest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
});

View 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>

View 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
View 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>

View 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>

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

View File

@ -0,0 +1,12 @@
describe('CacheManagerTest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
});

View File

@ -0,0 +1,12 @@
describe('CookieJarTest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
});

View File

@ -0,0 +1,12 @@
describe('LocalStorageTest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
});

View File

@ -0,0 +1,12 @@
describe('StorageManagerTest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
});

View File

@ -0,0 +1,12 @@
describe('DispatcherTest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
});

View File

@ -0,0 +1,12 @@
describe('EventManagerTest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
});

View File

@ -0,0 +1,12 @@
describe('LogLevelTest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
}

View File

@ -0,0 +1,12 @@
describe('LogLevelTest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
});

12
tests/Log/LoggerTest.js Normal file
View File

@ -0,0 +1,12 @@
describe('LoggerTest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
});

View File

@ -0,0 +1,12 @@
describe('MathProcessorTest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
});

View File

@ -0,0 +1,12 @@
describe('AverageTest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
});

View File

@ -0,0 +1,12 @@
describe('LinearRegressionTest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
});

View File

@ -0,0 +1,12 @@
describe('UISoundTest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
});

View File

@ -0,0 +1,12 @@
describe('CameraRecognitionTest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
}

View File

@ -0,0 +1,12 @@
describe('AppNotificationTest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
}

View File

@ -0,0 +1,12 @@
describe('BrowserNotificationTest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
}

View File

@ -0,0 +1,12 @@
describe('NotificationManagerTest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
}

View File

@ -0,0 +1,12 @@
describe('NotificationMessageTest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
}

View File

@ -0,0 +1,12 @@
describe('NotificationTypeTest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
}

View File

@ -0,0 +1,12 @@
describe('BrowserTypeTest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
}

View File

@ -0,0 +1,12 @@
describe('OSTypeTest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
}

View File

@ -0,0 +1,12 @@
describe('RequestDataTest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
}

View File

@ -0,0 +1,12 @@
describe('RequestMethodTest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
}

View File

@ -0,0 +1,12 @@
describe('RequestTest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
});

View File

@ -0,0 +1,12 @@
describe('RequestTypeTest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
}

View File

@ -0,0 +1,12 @@
describe('ResponseManagerTest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
});

View File

@ -0,0 +1,12 @@
describe('ResponseResultTypeTest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
}

View File

@ -0,0 +1,12 @@
describe('ResponseTest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
});

View File

@ -0,0 +1,12 @@
describe('ResponseTypeTest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
}

View File

@ -0,0 +1,12 @@
describe('AccountTest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
});

View File

@ -0,0 +1,12 @@
describe('ModuleFactoryTest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
});

View File

@ -0,0 +1,12 @@
describe('ModuleManagerTest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
});

12
tests/Route/RouteTest.js Normal file
View File

@ -0,0 +1,12 @@
describe('RouteTest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
});

View File

@ -0,0 +1,12 @@
describe('Sha1Test', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
});

View File

@ -0,0 +1,12 @@
describe('Sha1bTest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
});

View File

@ -0,0 +1,12 @@
describe('ClientTest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
});

36
tests/SpecRunner.html Normal file
View 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>

View File

@ -0,0 +1,12 @@
describe('CellTest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
});

View File

@ -0,0 +1,12 @@
describe('FormattingTest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
});

View File

@ -0,0 +1,12 @@
describe('FunctionsTest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
});

View File

@ -0,0 +1,12 @@
describe('SheetTest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
});

View File

@ -0,0 +1,12 @@
describe('SpreadsheetTest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
});

View File

@ -0,0 +1,12 @@
describe('ActionManagerTest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
});

View File

@ -0,0 +1,12 @@
describe('AutocompleteTest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
}

View File

@ -0,0 +1,12 @@
describe('FormTest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
}

View File

@ -0,0 +1,12 @@
describe('InputTest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
});

View File

@ -0,0 +1,12 @@
describe('TabTest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
}

View File

@ -0,0 +1,12 @@
describe('TableTest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
}

View File

@ -0,0 +1,12 @@
describe('TagInputTest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
}

View File

@ -0,0 +1,12 @@
describe('TagListTest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
}

12
tests/UI/DragNDropTest.js Normal file
View File

@ -0,0 +1,12 @@
describe('DragNDropTest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
});

12
tests/UI/GeneralUITest.js Normal file
View File

@ -0,0 +1,12 @@
describe('GeneralUITest', function ()
{
"use strict";
beforeEach(function ()
{
});
afterEach(function ()
{
});
}

View 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