-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Release Action
committed
Jan 2, 2023
1 parent
49b2fca
commit 5c7edbe
Showing
128 changed files
with
3,383 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
Copyright (c) 2022, The MathWorks, Inc. | ||
All rights reserved. | ||
|
||
Redistribution and use in source and binary forms, with or without | ||
modification, are permitted provided that the following conditions are met: | ||
|
||
1. Redistributions of source code must retain the above copyright notice, | ||
this list of conditions and the following disclaimer. | ||
|
||
2. Redistributions in binary form must reproduce the above copyright notice, | ||
this list of conditions and the following disclaimer in the documentation | ||
and/or other materials provided with the distribution. | ||
|
||
3. In all cases, the software is, and all modifications and derivatives of the | ||
software shall be, licensed to you solely for use in conjunction with | ||
MathWorks products and service offerings. | ||
|
||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" | ||
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE | ||
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR | ||
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER | ||
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, | ||
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | ||
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
Copyright (c) 2013 Google. All rights reserved. | ||
|
||
Redistribution and use in source and binary forms, with or without | ||
modification, are permitted provided that the following conditions are | ||
met: | ||
|
||
* Redistributions of source code must retain the above copyright | ||
notice, this list of conditions and the following disclaimer. | ||
* Redistributions in binary form must reproduce the above | ||
copyright notice, this list of conditions and the following disclaimer | ||
in the documentation and/or other materials provided with the | ||
distribution. | ||
* Neither the name of Google Inc. nor the names of its | ||
contributors may be used to endorse or promote products derived from | ||
this software without specific prior written permission. | ||
|
||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | ||
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | ||
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | ||
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | ||
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | ||
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | ||
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | ||
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | ||
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | ||
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
|
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
27 changes: 27 additions & 0 deletions
27
...riptgen/+scriptgen/+expressions/+test/CreateCoberturaAndHTMLCodePluginExpressionBuilder.m
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
classdef CreateCoberturaAndHTMLCodePluginExpressionBuilder < scriptgen.CodeBuilder | ||
% Copyright 2022 The MathWorks, Inc. | ||
|
||
properties | ||
CoberturaFilePath = '''coverage.xml''' | ||
HTMLFolderPath = '''htmlCodeCoverage''' | ||
Source = {'pwd'} | ||
end | ||
|
||
methods | ||
function set.CoberturaFilePath(obj, value) | ||
scriptgen.internal.validateTextScalar(value); | ||
obj.CoberturaFilePath = value; | ||
end | ||
|
||
function set.HTMLFolderPath(obj, value) | ||
scriptgen.internal.validateTextScalar(value); | ||
obj.HTMLFolderPath = value; | ||
end | ||
|
||
function set.Source(obj, value) | ||
scriptgen.internal.validateTextArray(value); | ||
obj.Source = value; | ||
end | ||
end | ||
end | ||
|
5 changes: 5 additions & 0 deletions
5
...+scriptgen/+expressions/+test/CreateCoberturaAndHTMLCodePluginParallelExpressionBuilder.m
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
classdef CreateCoberturaAndHTMLCodePluginParallelExpressionBuilder < ... | ||
scriptgen.expressions.test.CreateCoberturaAndHTMLCodePluginExpressionBuilder | ||
% Copyright 2022 The MathWorks, Inc. | ||
end | ||
|
5 changes: 5 additions & 0 deletions
5
...n/+scriptgen/+expressions/+test/CreateCoberturaAndHTMLCodePluginSerialExpressionBuilder.m
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
classdef CreateCoberturaAndHTMLCodePluginSerialExpressionBuilder < ... | ||
scriptgen.expressions.test.CreateCoberturaAndHTMLCodePluginExpressionBuilder | ||
% Copyright 2022 The MathWorks, Inc. | ||
end | ||
|
21 changes: 21 additions & 0 deletions
21
dist/scriptgen/+scriptgen/+expressions/+test/CreateCoberturaCodePluginExpressionBuilder.m
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
classdef CreateCoberturaCodePluginExpressionBuilder < scriptgen.CodeBuilder | ||
% Copyright 2020 The MathWorks, Inc. | ||
|
||
properties | ||
FilePath = '''coverage.xml''' | ||
Source = {'pwd'} | ||
end | ||
|
||
methods | ||
function set.FilePath(obj, value) | ||
scriptgen.internal.validateTextScalar(value); | ||
obj.FilePath = value; | ||
end | ||
|
||
function set.Source(obj, value) | ||
scriptgen.internal.validateTextArray(value); | ||
obj.Source = value; | ||
end | ||
end | ||
end | ||
|
5 changes: 5 additions & 0 deletions
5
...iptgen/+scriptgen/+expressions/+test/CreateCoberturaCodePluginParallelExpressionBuilder.m
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
classdef CreateCoberturaCodePluginParallelExpressionBuilder < ... | ||
scriptgen.expressions.test.CreateCoberturaCodePluginExpressionBuilder | ||
% Copyright 2022 The MathWorks, Inc. | ||
end | ||
|
5 changes: 5 additions & 0 deletions
5
...criptgen/+scriptgen/+expressions/+test/CreateCoberturaCodePluginSerialExpressionBuilder.m
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
classdef CreateCoberturaCodePluginSerialExpressionBuilder < ... | ||
scriptgen.expressions.test.CreateCoberturaCodePluginExpressionBuilder | ||
% Copyright 2022 The MathWorks, Inc. | ||
end | ||
|
15 changes: 15 additions & 0 deletions
15
dist/scriptgen/+scriptgen/+expressions/+test/CreateCoberturaModelPluginExpressionBuilder.m
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
classdef CreateCoberturaModelPluginExpressionBuilder < scriptgen.CodeBuilder | ||
% Copyright 2020 The MathWorks, Inc. | ||
|
||
properties | ||
FilePath = '''coverage.xml''' | ||
end | ||
|
||
methods | ||
function set.FilePath(obj, value) | ||
scriptgen.internal.validateTextScalar(value); | ||
obj.FilePath = value; | ||
end | ||
end | ||
end | ||
|
5 changes: 5 additions & 0 deletions
5
...ptgen/+scriptgen/+expressions/+test/CreateCoberturaModelPluginParallelExpressionBuilder.m
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
classdef CreateCoberturaModelPluginParallelExpressionBuilder < ... | ||
scriptgen.expressions.test.CreateCoberturaModelPluginExpressionBuilder | ||
% Copyright 2022 The MathWorks, Inc. | ||
end | ||
|
5 changes: 5 additions & 0 deletions
5
...riptgen/+scriptgen/+expressions/+test/CreateCoberturaModelPluginSerialExpressionBuilder.m
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
classdef CreateCoberturaModelPluginSerialExpressionBuilder < ... | ||
scriptgen.expressions.test.CreateCoberturaModelPluginExpressionBuilder | ||
% Copyright 2022 The MathWorks, Inc. | ||
end | ||
|
4 changes: 4 additions & 0 deletions
4
dist/scriptgen/+scriptgen/+expressions/+test/CreateFailOnWarningsPluginExpressionBuilder.m
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
classdef CreateFailOnWarningsPluginExpressionBuilder < scriptgen.CodeBuilder | ||
% Copyright 2022 The MathWorks, Inc. | ||
end | ||
|
5 changes: 5 additions & 0 deletions
5
...ptgen/+scriptgen/+expressions/+test/CreateFailOnWarningsPluginParallelExpressionBuilder.m
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
classdef CreateFailOnWarningsPluginParallelExpressionBuilder < ... | ||
scriptgen.expressions.test.CreateFailOnWarningsPluginExpressionBuilder | ||
% Copyright 2022 The MathWorks, Inc. | ||
end | ||
|
5 changes: 5 additions & 0 deletions
5
...riptgen/+scriptgen/+expressions/+test/CreateFailOnWarningsPluginSerialExpressionBuilder.m
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
classdef CreateFailOnWarningsPluginSerialExpressionBuilder < ... | ||
scriptgen.expressions.test.CreateFailOnWarningsPluginExpressionBuilder | ||
% Copyright 2022 The MathWorks, Inc. | ||
end | ||
|
20 changes: 20 additions & 0 deletions
20
dist/scriptgen/+scriptgen/+expressions/+test/CreateHTMLCodePluginExpressionBuilder.m
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
classdef CreateHTMLCodePluginExpressionBuilder < scriptgen.CodeBuilder | ||
% Copyright 2020 The MathWorks, Inc. | ||
|
||
properties | ||
FolderPath = '''htmlCodeCoverage''' | ||
Source = {'pwd'} | ||
end | ||
|
||
methods | ||
function set.FolderPath(obj, value) | ||
scriptgen.internal.validateTextScalar(value); | ||
obj.FolderPath = value; | ||
end | ||
|
||
function set.Source(obj, value) | ||
scriptgen.internal.validateTextArray(value); | ||
obj.Source = value; | ||
end | ||
end | ||
end |
4 changes: 4 additions & 0 deletions
4
dist/scriptgen/+scriptgen/+expressions/+test/CreateHTMLCodePluginParallelExpressionBuilder.m
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
classdef CreateHTMLCodePluginParallelExpressionBuilder < ... | ||
scriptgen.expressions.test.CreateHTMLCodePluginExpressionBuilder | ||
% Copyright 2022 The MathWorks, Inc. | ||
end |
4 changes: 4 additions & 0 deletions
4
dist/scriptgen/+scriptgen/+expressions/+test/CreateHTMLCodePluginSerialExpressionBuilder.m
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
classdef CreateHTMLCodePluginSerialExpressionBuilder < ... | ||
scriptgen.expressions.test.CreateHTMLCodePluginExpressionBuilder | ||
% Copyright 2022 The MathWorks, Inc. | ||
end |
14 changes: 14 additions & 0 deletions
14
dist/scriptgen/+scriptgen/+expressions/+test/CreateHTMLModelPluginExpressionBuilder.m
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
classdef CreateHTMLModelPluginExpressionBuilder < scriptgen.CodeBuilder | ||
% Copyright 2021 The MathWorks, Inc. | ||
|
||
properties | ||
FolderPath = '''htmlModelCoverage''' | ||
end | ||
|
||
methods | ||
function set.FolderPath(obj, value) | ||
scriptgen.internal.validateTextScalar(value); | ||
obj.FolderPath = value; | ||
end | ||
end | ||
end |
4 changes: 4 additions & 0 deletions
4
.../scriptgen/+scriptgen/+expressions/+test/CreateHTMLModelPluginParallelExpressionBuilder.m
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
classdef CreateHTMLModelPluginParallelExpressionBuilder < ... | ||
scriptgen.expressions.test.CreateHTMLModelPluginExpressionBuilder | ||
% Copyright 2022 The MathWorks, Inc. | ||
end |
4 changes: 4 additions & 0 deletions
4
dist/scriptgen/+scriptgen/+expressions/+test/CreateHTMLModelPluginSerialExpressionBuilder.m
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
classdef CreateHTMLModelPluginSerialExpressionBuilder < ... | ||
scriptgen.expressions.test.CreateHTMLModelPluginExpressionBuilder | ||
% Copyright 2022 The MathWorks, Inc. | ||
end |
14 changes: 14 additions & 0 deletions
14
dist/scriptgen/+scriptgen/+expressions/+test/CreateHTMLTestReportPluginExpressionBuilder.m
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
classdef CreateHTMLTestReportPluginExpressionBuilder < scriptgen.CodeBuilder | ||
% Copyright 2021 The MathWorks, Inc. | ||
|
||
properties | ||
FolderPath = '''report''' | ||
end | ||
|
||
methods | ||
function set.FolderPath(obj, value) | ||
scriptgen.internal.validateTextScalar(value); | ||
obj.FolderPath = value; | ||
end | ||
end | ||
end |
4 changes: 4 additions & 0 deletions
4
...ptgen/+scriptgen/+expressions/+test/CreateHTMLTestReportPluginParallelExpressionBuilder.m
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
classdef CreateHTMLTestReportPluginParallelExpressionBuilder < ... | ||
scriptgen.expressions.test.CreateHTMLTestReportPluginExpressionBuilder | ||
% Copyright 2022 The MathWorks, Inc. | ||
end |
4 changes: 4 additions & 0 deletions
4
...riptgen/+scriptgen/+expressions/+test/CreateHTMLTestReportPluginSerialExpressionBuilder.m
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
classdef CreateHTMLTestReportPluginSerialExpressionBuilder < ... | ||
scriptgen.expressions.test.CreateHTMLTestReportPluginExpressionBuilder | ||
% Copyright 2022 The MathWorks, Inc. | ||
end |
14 changes: 14 additions & 0 deletions
14
dist/scriptgen/+scriptgen/+expressions/+test/CreateHasBaseFolderSelectorExpressionBuilder.m
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
classdef CreateHasBaseFolderSelectorExpressionBuilder < scriptgen.CodeBuilder | ||
% Copyright 2020 The MathWorks, Inc. | ||
|
||
properties | ||
BaseFolder = {'pwd'} | ||
end | ||
|
||
methods | ||
function set.BaseFolder(obj, value) | ||
scriptgen.internal.validateTextArray(value); | ||
obj.BaseFolder = value; | ||
end | ||
end | ||
end |
15 changes: 15 additions & 0 deletions
15
dist/scriptgen/+scriptgen/+expressions/+test/CreateHasTagSelectorExpressionBuilder.m
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
classdef CreateHasTagSelectorExpressionBuilder < scriptgen.CodeBuilder | ||
% Copyright 2020 The MathWorks, Inc. | ||
|
||
properties | ||
Tag = '''tag''' | ||
end | ||
|
||
methods | ||
function set.Tag(obj, value) | ||
scriptgen.internal.validateTextScalar(value); | ||
obj.Tag = value; | ||
end | ||
end | ||
end | ||
|
15 changes: 15 additions & 0 deletions
15
dist/scriptgen/+scriptgen/+expressions/+test/CreateJUnitPluginExpressionBuilder.m
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
classdef CreateJUnitPluginExpressionBuilder < scriptgen.CodeBuilder | ||
% Copyright 2020 The MathWorks, Inc. | ||
|
||
properties | ||
FilePath = '''results.xml''' | ||
end | ||
|
||
methods | ||
function set.FilePath(obj, value) | ||
scriptgen.internal.validateTextScalar(value); | ||
obj.FilePath = value; | ||
end | ||
end | ||
end | ||
|
5 changes: 5 additions & 0 deletions
5
dist/scriptgen/+scriptgen/+expressions/+test/CreateJUnitPluginParallelExpressionBuilder.m
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
classdef CreateJUnitPluginParallelExpressionBuilder < ... | ||
scriptgen.expressions.test.CreateJUnitPluginExpressionBuilder | ||
% Copyright 2022 The MathWorks, Inc. | ||
end | ||
|
5 changes: 5 additions & 0 deletions
5
dist/scriptgen/+scriptgen/+expressions/+test/CreateJUnitPluginSerialExpressionBuilder.m
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
classdef CreateJUnitPluginSerialExpressionBuilder < ... | ||
scriptgen.expressions.test.CreateJUnitPluginExpressionBuilder | ||
% Copyright 2022 The MathWorks, Inc. | ||
end | ||
|
15 changes: 15 additions & 0 deletions
15
dist/scriptgen/+scriptgen/+expressions/+test/CreatePDFPluginExpressionBuilder.m
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
classdef CreatePDFPluginExpressionBuilder < scriptgen.CodeBuilder | ||
% Copyright 2020 The MathWorks, Inc. | ||
|
||
properties | ||
FilePath = '''report.pdf''' | ||
end | ||
|
||
methods | ||
function set.FilePath(obj, value) | ||
scriptgen.internal.validateTextScalar(value); | ||
obj.FilePath = value; | ||
end | ||
end | ||
end | ||
|
5 changes: 5 additions & 0 deletions
5
dist/scriptgen/+scriptgen/+expressions/+test/CreatePDFPluginParallelExpressionBuilder.m
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
classdef CreatePDFPluginParallelExpressionBuilder < ... | ||
scriptgen.expressions.test.CreatePDFPluginExpressionBuilder | ||
% Copyright 2022 The MathWorks, Inc. | ||
end | ||
|
5 changes: 5 additions & 0 deletions
5
dist/scriptgen/+scriptgen/+expressions/+test/CreatePDFPluginSerialExpressionBuilder.m
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
classdef CreatePDFPluginSerialExpressionBuilder < ... | ||
scriptgen.expressions.test.CreatePDFPluginExpressionBuilder | ||
% Copyright 2022 The MathWorks, Inc. | ||
end | ||
|
4 changes: 4 additions & 0 deletions
4
dist/scriptgen/+scriptgen/+expressions/+test/CreateSimulinkTestPluginExpressionBuilder.m
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
classdef CreateSimulinkTestPluginExpressionBuilder < scriptgen.CodeBuilder | ||
% Copyright 2020 The MathWorks, Inc. | ||
end | ||
|
5 changes: 5 additions & 0 deletions
5
...riptgen/+scriptgen/+expressions/+test/CreateSimulinkTestPluginParallelExpressionBuilder.m
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
classdef CreateSimulinkTestPluginParallelExpressionBuilder < ... | ||
scriptgen.expressions.test.CreateSimulinkTestPluginExpressionBuilder | ||
% Copyright 2022 The MathWorks, Inc. | ||
end | ||
|
5 changes: 5 additions & 0 deletions
5
...scriptgen/+scriptgen/+expressions/+test/CreateSimulinkTestPluginSerialExpressionBuilder.m
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
classdef CreateSimulinkTestPluginSerialExpressionBuilder < ... | ||
scriptgen.expressions.test.CreateSimulinkTestPluginExpressionBuilder | ||
% Copyright 2022 The MathWorks, Inc. | ||
end | ||
|
15 changes: 15 additions & 0 deletions
15
...criptgen/+scriptgen/+expressions/+test/CreateSimulinkTestResultsPluginExpressionBuilder.m
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
classdef CreateSimulinkTestResultsPluginExpressionBuilder < scriptgen.CodeBuilder | ||
% Copyright 2020 The MathWorks, Inc. | ||
|
||
properties | ||
FilePath = '''results.mldatx''' | ||
end | ||
|
||
methods | ||
function set.FilePath(obj, value) | ||
scriptgen.internal.validateTextScalar(value); | ||
obj.FilePath = value; | ||
end | ||
end | ||
end | ||
|
5 changes: 5 additions & 0 deletions
5
.../+scriptgen/+expressions/+test/CreateSimulinkTestResultsPluginParallelExpressionBuilder.m
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
classdef CreateSimulinkTestResultsPluginParallelExpressionBuilder < ... | ||
scriptgen.expressions.test.CreateSimulinkTestResultsPluginExpressionBuilder | ||
% Copyright 2022 The MathWorks, Inc. | ||
end | ||
|
5 changes: 5 additions & 0 deletions
5
...en/+scriptgen/+expressions/+test/CreateSimulinkTestResultsPluginSerialExpressionBuilder.m
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
classdef CreateSimulinkTestResultsPluginSerialExpressionBuilder < ... | ||
scriptgen.expressions.test.CreateSimulinkTestResultsPluginExpressionBuilder | ||
% Copyright 2022 The MathWorks, Inc. | ||
end | ||
|
Oops, something went wrong.