Build out MATLAB test framework and core integration coverage
This commit is contained in:
@@ -1,11 +1,10 @@
|
||||
classdef DBHandler_test < matlab.unittest.TestCase
|
||||
% Test class for DBHandler
|
||||
classdef DBHandler_test < IMDDTestCase
|
||||
% Auto-generated placeholder for DBHandler.
|
||||
% Target: C:/Users/Silas/Documents/MATLAB/imdd_simulation/Classes/DataBaseHandler/DBHandler.m
|
||||
|
||||
methods (Test)
|
||||
function testExample(testCase)
|
||||
% Example test case for DBHandler
|
||||
% Add your test code here
|
||||
testCase.verifyTrue(true);
|
||||
methods (Test, TestTags = {'placeholder', 'todo'})
|
||||
function testNotImplemented(testCase)
|
||||
testCase.assumeFail("Tests for DBHandler are not implemented yet.");
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -1,11 +1,10 @@
|
||||
classdef Equalizerstruct_test < matlab.unittest.TestCase
|
||||
% Test class for Equalizerstruct
|
||||
classdef Equalizerstruct_test < IMDDTestCase
|
||||
% Auto-generated placeholder for Equalizerstruct.
|
||||
% Target: C:/Users/Silas/Documents/MATLAB/imdd_simulation/Classes/DataBaseHandler/Equalizerstruct.m
|
||||
|
||||
methods (Test)
|
||||
function testExample(testCase)
|
||||
% Example test case for Equalizerstruct
|
||||
% Add your test code here
|
||||
testCase.verifyTrue(true);
|
||||
methods (Test, TestTags = {'placeholder', 'todo'})
|
||||
function testNotImplemented(testCase)
|
||||
testCase.assumeFail("Tests for Equalizerstruct are not implemented yet.");
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -1,11 +1,10 @@
|
||||
classdef Metricstruct_test < matlab.unittest.TestCase
|
||||
% Test class for Metricstruct
|
||||
classdef Metricstruct_test < IMDDTestCase
|
||||
% Auto-generated placeholder for Metricstruct.
|
||||
% Target: C:/Users/Silas/Documents/MATLAB/imdd_simulation/Classes/DataBaseHandler/Metricstruct.m
|
||||
|
||||
methods (Test)
|
||||
function testExample(testCase)
|
||||
% Example test case for Metricstruct
|
||||
% Add your test code here
|
||||
testCase.verifyTrue(true);
|
||||
methods (Test, TestTags = {'placeholder', 'todo'})
|
||||
function testNotImplemented(testCase)
|
||||
testCase.assumeFail("Tests for Metricstruct are not implemented yet.");
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -1,11 +1,10 @@
|
||||
classdef QueryFilter_test < matlab.unittest.TestCase
|
||||
% Test class for QueryFilter
|
||||
classdef QueryFilter_test < IMDDTestCase
|
||||
% Auto-generated placeholder for QueryFilter.
|
||||
% Target: C:/Users/Silas/Documents/MATLAB/imdd_simulation/Classes/DataBaseHandler/QueryFilter.m
|
||||
|
||||
methods (Test)
|
||||
function testExample(testCase)
|
||||
% Example test case for QueryFilter
|
||||
% Add your test code here
|
||||
testCase.verifyTrue(true);
|
||||
methods (Test, TestTags = {'placeholder', 'todo'})
|
||||
function testNotImplemented(testCase)
|
||||
testCase.assumeFail("Tests for QueryFilter are not implemented yet.");
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -1,11 +1,10 @@
|
||||
classdef SqlFilter_test < matlab.unittest.TestCase
|
||||
% Test class for SqlFilter
|
||||
classdef SqlFilter_test < IMDDTestCase
|
||||
% Auto-generated placeholder for SqlFilter.
|
||||
% Target: C:/Users/Silas/Documents/MATLAB/imdd_simulation/Classes/DataBaseHandler/SqlFilter.m
|
||||
|
||||
methods (Test)
|
||||
function testExample(testCase)
|
||||
% Example test case for SqlFilter
|
||||
% Add your test code here
|
||||
testCase.verifyTrue(true);
|
||||
methods (Test, TestTags = {'placeholder', 'todo'})
|
||||
function testNotImplemented(testCase)
|
||||
testCase.assumeFail("Tests for SqlFilter are not implemented yet.");
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -1,11 +1,10 @@
|
||||
classdef SqlOperator_test < matlab.unittest.TestCase
|
||||
% Test class for SqlOperator
|
||||
classdef SqlOperator_test < IMDDTestCase
|
||||
% Auto-generated placeholder for SqlOperator.
|
||||
% Target: C:/Users/Silas/Documents/MATLAB/imdd_simulation/Classes/DataBaseHandler/SqlOperator.m
|
||||
|
||||
methods (Test)
|
||||
function testExample(testCase)
|
||||
% Example test case for SqlOperator
|
||||
% Add your test code here
|
||||
testCase.verifyTrue(true);
|
||||
methods (Test, TestTags = {'placeholder', 'todo'})
|
||||
function testNotImplemented(testCase)
|
||||
testCase.assumeFail("Tests for SqlOperator are not implemented yet.");
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -1,11 +0,0 @@
|
||||
classdef cleanUpTable_test < matlab.unittest.TestCase
|
||||
% Test class for cleanUpTable
|
||||
|
||||
methods (Test)
|
||||
function testExample(testCase)
|
||||
% Example test case for cleanUpTable
|
||||
% Add your test code here
|
||||
testCase.verifyTrue(true);
|
||||
end
|
||||
end
|
||||
end
|
||||
@@ -1,11 +0,0 @@
|
||||
classdef groupIt_test < matlab.unittest.TestCase
|
||||
% Test class for groupIt
|
||||
|
||||
methods (Test)
|
||||
function testExample(testCase)
|
||||
% Example test case for groupIt
|
||||
% Add your test code here
|
||||
testCase.verifyTrue(true);
|
||||
end
|
||||
end
|
||||
end
|
||||
@@ -1,11 +0,0 @@
|
||||
classdef removeGroupOutliers_test < matlab.unittest.TestCase
|
||||
% Test class for removeGroupOutliers
|
||||
|
||||
methods (Test)
|
||||
function testExample(testCase)
|
||||
% Example test case for removeGroupOutliers
|
||||
% Add your test code here
|
||||
testCase.verifyTrue(true);
|
||||
end
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user