We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e32c0bc commit f33d508Copy full SHA for f33d508
SoftwareTests/CheckTestResults.m
@@ -16,7 +16,7 @@
16
17
function Version = GetResults(Project)
18
RootFolder = currentProject().RootFolder;
19
- Version = dir(fullfile(RootFolder,"SoftwareTests","TestResults*.txt"));
+ Version = dir(fullfile(RootFolder,"public","TestResults*.txt"));
20
Version = extractBetween([Version.name],"TestResults_",".txt");
21
end
22
@@ -37,11 +37,11 @@ function SetUpSmokeTest(testCase,Project)
37
methods(Test)
38
39
function CheckResults(testCase,Version)
40
- File = fullfile("SoftwareTests","TestResults_"+Version+".txt");
+ File = fullfile("public","TestResults_"+Version+".txt");
41
Results = readtable(File,TextType="string");
42
testCase.verifyTrue(all(Results.Passed));
43
44
45
46
47
-end
+end
0 commit comments