File tree Expand file tree Collapse file tree 7 files changed +20
-10
lines changed
resources/project/hLMKfvmMZYFbdoE4Xco7ryXas6s Expand file tree Collapse file tree 7 files changed +20
-10
lines changed Original file line number Diff line number Diff line change 3
3
4
4
% Copyright 2021-2025 The MathWorks, Inc.
5
5
6
- properties ( GetAccess = ?matlab .unittest .TestCase , ...
7
- SetAccess = private )
6
+ properties ( GetAccess = ?Testable , SetAccess = private )
8
7
% Push button for generating new data.
9
8
Button (: , 1 ) matlab.ui.control.Button {mustBeScalarOrEmpty }
10
- end % properties ( GetAccess = ?matlab.unittest.TestCase, ...
11
- % SetAccess = private )
9
+ end % properties ( GetAccess = ?Testable, SetAccess = private )
12
10
13
11
methods
14
12
Original file line number Diff line number Diff line change 10
10
LineColor {validatecolor } = " k"
11
11
end % properties
12
12
13
- properties ( GetAccess = ?matlab .unittest .TestCase , ...
14
- SetAccess = private )
13
+ properties ( GetAccess = ?Testable , SetAccess = private )
15
14
% Line object used to visualize the model data.
16
15
Line (: , 1 ) matlab.graphics.primitive.Line {mustBeScalarOrEmpty }
17
- end % properties ( GetAccess = ?matlab.unittest.TestCase, ...
18
- % SetAccess = private )
16
+ end % properties ( GetAccess = ?Testable, SetAccess = private )
19
17
20
18
properties ( Access = private )
21
19
% Listener object used to respond dynamically to model events.
Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+ <Info >
3
+ <Category UUID =" FileClassCategory" >
4
+ <Label UUID =" test" />
5
+ </Category >
6
+ </Info >
Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+ <Info location =" Testable.m" type =" File" />
Original file line number Diff line number Diff line change
1
+ classdef Testable < matlab .uitest .TestCase
2
+ % TESTABLE Convenience class used for testing purposes.
3
+
4
+ % Copyright 2025 The MathWorks, Inc.
5
+
6
+ end % classdef
Original file line number Diff line number Diff line change 1
- classdef ( TestTags = [" system" , "ui "] ) tApp < matlab . uitest . TestCase
1
+ classdef ( TestTags = [" system" , "ui "] ) tApp < Testable
2
2
% TAPP System-level test for the entire application.
3
3
4
4
% Copyright 2025 The MathWorks, Inc.
Original file line number Diff line number Diff line change 1
- classdef ( Abstract , TestTags = " ui" ) tComponent < matlab . uitest . TestCase
1
+ classdef ( Abstract , TestTags = " ui" ) tComponent < Testable
2
2
% TCOMPONENT Common test infrastructure for views and controllers in the
3
3
% simple MVC application.
4
4
You can’t perform that action at this time.
0 commit comments