I have 2 classes in folder :
C:\controller\functions\VerifyModel.m
C:\OGVD\prod\KMLP\controller\controllerStatus.m
VerifyModel.m
classdef verifyModel < matlab.unittest.TestCase
methods(access=public)
function...
end
end
controllerStatus.m
classdef controllerStatus < verifyModel
.....
end
but when I run controllerStatus.m
, I got an error as the class I used isn't in the path.
I've tried by adding C:\controller\functions\@VerifyModel\VerifyModel.m
What I could do so that the class is added in the path?