12 lines
303 B
Matlab
12 lines
303 B
Matlab
classdef Moveit_wrapper_test < matlab.unittest.TestCase
|
|
% Test class for Moveit_wrapper
|
|
|
|
methods (Test)
|
|
function testExample(testCase)
|
|
% Example test case for Moveit_wrapper
|
|
% Add your test code here
|
|
testCase.verifyTrue(true);
|
|
end
|
|
end
|
|
end
|