File tree Expand file tree Collapse file tree 3 files changed +7
-8
lines changed Expand file tree Collapse file tree 3 files changed +7
-8
lines changed Original file line number Diff line number Diff line change 99% * r: logical
1010
1111function r = version_atleast(in , ref )
12- arguments
13- in (1 ,1 ) string
14- ref (1 ,1 ) string
15- end
1612
17- parts1 = str2double(split(in , " ." ));
18- parts2 = str2double(split(ref , " ." ));
13+ in = string(in );
14+ ref = string(ref );
15+
16+ parts1 = str2double(split(in , ' .' ));
17+ parts2 = str2double(split(ref , ' .' ));
1918
2019r = true ;
2120
Original file line number Diff line number Diff line change 99
1010methods (TestClassSetup )
1111function test_path(tc )
12- tc .applyFixture(matlab .unittest .fixtures .WorkingFolderFixture())
12+ tc .applyFixture(matlab .unittest .fixtures .WorkingFolderFixture());
1313end
1414end
1515
Original file line number Diff line number Diff line change 11classdef (SharedTestFixtures = { matlab .unittest .fixtures .PathFixture(fileparts(fileparts(mfilename(' fullpath' ))))}, ...
2- TestTags = {' R2019b ' , ' pure' }) ...
2+ TestTags = {' R2017b ' , ' pure' }) ...
33 TestVersion < matlab .unittest .TestCase
44
55properties (TestParameter )
You can’t perform that action at this time.
0 commit comments