18 lines
362 B
Mathematica
18 lines
362 B
Mathematica
|
% Matlab binding test cases
|
||
|
% Uses Matlab's builtin testing framework
|
||
|
classdef OpenCVTest < matlab.unittest.TestCase
|
||
|
|
||
|
methods(Test)
|
||
|
|
||
|
% check if the autogenerated functions can be found
|
||
|
function randExists(testcase)
|
||
|
try
|
||
|
cv.rand();
|
||
|
catch
|
||
|
testcase.verifyFail();
|
||
|
end
|
||
|
testcase.verifyTrue(true);
|
||
|
end
|
||
|
end
|
||
|
end
|