Skip to content
Snippets Groups Projects
Commit fc88767a authored by Stéphane Adjemian's avatar Stéphane Adjemian
Browse files

Optionally returns a list of routines without unit tests.

parent 96bf9626
No related branches found
No related tags found
No related merge requests found
...@@ -35,6 +35,10 @@ report = {}; ...@@ -35,6 +35,10 @@ report = {};
testcoverage = zeros(2,1); testcoverage = zeros(2,1);
if nargout>2
list_of_routines_without_unit_tests = {};
end
skipline() skipline()
for f=1:length(listoffiles) for f=1:length(listoffiles)
...@@ -52,6 +56,7 @@ for f=1:length(listoffiles) ...@@ -52,6 +56,7 @@ for f=1:length(listoffiles)
report = [report; info]; report = [report; info];
else else
testcoverage(2) = testcoverage(2) + 1; testcoverage(2) = testcoverage(2) + 1;
list_of_routines_without_unit_tests(testcoverage(2)) = { listoffiles{f} };
end end
end end
end end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment