Skip to content
This repository was archived by the owner on Mar 27, 2025. It is now read-only.

Commit b51e615

Browse files
committed
Updated the strings
1 parent f04f542 commit b51e615

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/main/java/com/mathworks/ci/MatlabBuilderConstants.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ public class MatlabBuilderConstants {
1616

1717
// Input parameter names (Passed to runMatlabTests.m as name-value pair arguments)
1818
static final String PDF_REPORT = "'PDFReport'";
19-
static final String TAP_RESULTS = "'TapResults'";
20-
static final String JUNIT_RESULTS = "'JunitResults'";
19+
static final String TAP_RESULTS = "'TAPResults'";
20+
static final String JUNIT_RESULTS = "'JUnitResults'";
2121
static final String STM_RESULTS = "'SimulinkTestResults'";
2222
static final String COBERTURA_CODE_COVERAGE = "'CoberturaCodeCoverage'";
2323
static final String COBERTURA_MODEL_COVERAGE = "'CoberturaModelCoverage'";
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<div>
22
<br>
3-
Generate a Cobertura coverage report, named <b> cobertura.xml, </b> to be stored in the<b> matlabTestArtifacts</b> folder of the current Jenkins workspace.
3+
Generate a Cobertura code coverage report, named <b> cobertura.xml, </b> to be stored in the<b> matlabTestArtifacts</b> folder of the current Jenkins workspace.
44
<br>
55
</div>

src/test/java/com/mathworks/ci/MatlabBuilderTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -300,8 +300,8 @@ public void verifyRunTestAutomaticallyIsDefault() throws Exception {
300300
this.matlabBuilder.setMatlabRoot(getMatlabroot("R2018b"));
301301
FreeStyleBuild build = getBuildforRunTestAutomatically();
302302
jenkins.assertLogContains("-batch", build);
303-
jenkins.assertLogContains("\'PDFReport\',true,\'TapResults\',true," +
304-
"\'JunitResults\',true,\'SimulinkTestResults\',true," +
303+
jenkins.assertLogContains("\'PDFReport\',true,\'TAPResults\',true," +
304+
"\'JUnitResults\',true,\'SimulinkTestResults\',true," +
305305
"\'CoberturaCodeCoverage\',true,\'CoberturaModelCoverage\',true", build);
306306
}
307307

0 commit comments

Comments
 (0)