@@ -7,7 +7,7 @@ function test_main(context, sel)
77 context = [];
88end
99if nargin < 2
10- sel = (~HasTag(" exe" ) & ~HasTag(" java_exe" )) | HasTag(" native_exe" );
10+ sel = (~HasTag(' exe' ) & ~HasTag(' java_exe' )) | HasTag(' native_exe' );
1111end
1212
1313import matlab .unittest .TestRunner
@@ -36,7 +36,7 @@ function test_main(context, sel)
3636 case {' MATLAB:expectedScalartext' , ' MATLAB:expectedScalar' }
3737 suite = testsuite(test_root );
3838
39- assert(numel(rtags ) > 0 , " No test tags found for this Matlab release" )
39+ assert(numel(rtags ) > 0 , ' No test tags found for this Matlab release' )
4040 ts = HasTag(rtags(1 ));
4141 if numel(rtags ) > 1
4242 for t = rtags(2 : end )
@@ -56,18 +56,18 @@ function test_main(context, sel)
5656runner = TestRunner .withTextOutput ;
5757r = runner .run(suite );
5858
59- assert(~isempty(r ), " No tests were run" )
59+ assert(~isempty(r ), ' No tests were run' )
6060
6161Lf = sum([r .Failed ]);
6262Lok = sum([r .Passed ]);
6363Lk = sum([r .Incomplete ]);
6464Lt = numel(r );
65- assert(Lf == 0 , sprintf(" %d / %d tests failed" , Lf , Lt ))
65+ assert(Lf == 0 , sprintf(' %d / %d tests failed' , Lf , Lt ))
6666
6767if Lk
68- fprintf(" %d / %d tests skipped\n" , Lk , Lt );
68+ fprintf(' %d / %d tests skipped\n ' , Lk , Lt );
6969end
7070
71- fprintf(" %d / %d tests succeeded\n" , Lok , Lt );
71+ fprintf(' %d / %d tests succeeded\n ' , Lok , Lt );
7272
7373end
0 commit comments