Skip to content

Commit

Permalink
Minor change to make tests less verbose
Browse files Browse the repository at this point in the history
  • Loading branch information
ehennestad committed Nov 13, 2024
1 parent 218f2b1 commit 96c0315
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions tools/tasks/testToolbox.m
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ function testToolbox(varargin)
projectRootDirectory, ...
"CreateBadge", true, ...
"CoverageFileList", codecoverageFileList, ...
"Verbosity", "Concise", ...
varargin{:} ...
)
end
Expand Down
5 changes: 3 additions & 2 deletions tools/tests/unitTests/TutorialTest.m
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,9 @@ function setupMethod(testCase)
end

methods (Test)
function testTutorial(testCase, tutorialFile)
run(tutorialFile)
function testTutorial(testCase, tutorialFile) %#ok<INUSD>
C = evalc( "run(tutorialFile)" );
testCase.verifyClass(C, 'char')
end
end
end
Expand Down

0 comments on commit 96c0315

Please sign in to comment.