-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsimulated_tests.m
More file actions
49 lines (37 loc) · 1.43 KB
/
simulated_tests.m
File metadata and controls
49 lines (37 loc) · 1.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
classdef simulated_tests < matlab.unittest.TestCase
% Run various tests on the core abstract functionality of MIC.
% In the MATLAB unittest context, run in the following manner:
% testCase = runtests
methods (Test)
function test_simulated_Camera(testCase)
fprintf('mic.simulated_Camera.funcTest\n');
results = mic.simulated_Camera.funcTest();
testCase.verifyEqual(results, true);
end
function test_simulated_Instrument(testCase)
fprintf('mic.simulated_Instrument.funcTest\n');
results = mic.simulated_Instrument.funcTest();
testCase.verifyEqual(results, true);
end
function test_simulated_LightSource(testCase)
fprintf('mic.simulated_LightSource.funcTest\n');
results = mic.simulated_LightSource.funcTest();
testCase.verifyEqual(results, true);
end
function test_simulated_LinearStage(testCase)
fprintf('mic.simulated_LinearStage.funcTest\n');
results = mic.simulated_LinearStage.funcTest();
testCase.verifyEqual(results, true);
end
function test_simulated_PowerMeter(testCase)
fprintf('mic.simulated_PowerMeter.funcTest\n');
results = mic.simulated_PowerMeter.funcTest();
testCase.verifyEqual(results, true);
end
function test_simulated_Stage3D(testCase)
fprintf('mic.simulated_Stage3D.funcTest\n');
results = mic.simulated_Stage3D.funcTest();
testCase.verifyEqual(results, true);
end
end % Methods
end