@@ -46,7 +46,7 @@ void main() {
46
46
var inputSpecFile =
47
47
File ('$parentFolder /github_issue_#$issueNumber .json' );
48
48
var outputDir = Directory ('./test/specs/issue/$issueNumber /output' );
49
- var generatedOutput = await generateFromAnnotation (
49
+ await generateFromAnnotation (
50
50
Openapi (
51
51
additionalProperties: AdditionalProperties (
52
52
pubName: 'tictactoe_api' ,
@@ -98,7 +98,7 @@ void main() {
98
98
var inputSpecFile =
99
99
File ('$parentFolder /github_issue_#$issueNumber .json' );
100
100
101
- var generatedOutput = await generateFromPath (
101
+ await generateFromPath (
102
102
annotatedFile.path,
103
103
openapiSpecFilePath: inputSpecFile.path,
104
104
process: processRunner,
@@ -131,7 +131,7 @@ void main() {
131
131
var inputSpecFile =
132
132
File ('$parentFolder /github_issue_#$issueNumber .json' );
133
133
134
- var generatedOutput = await generateFromPath (
134
+ await generateFromPath (
135
135
annotatedFile.path,
136
136
process: processRunner,
137
137
openapiSpecFilePath: inputSpecFile.path,
@@ -178,7 +178,7 @@ void main() {
178
178
var inputSpecFile =
179
179
File ('$parentFolder /github_issue_#$issueNumber .json' );
180
180
181
- var generatedOutput = await generateFromPath (
181
+ await generateFromPath (
182
182
annotatedFile.path,
183
183
process: processRunner,
184
184
openapiSpecFilePath: inputSpecFile.path,
@@ -208,7 +208,7 @@ void main() {
208
208
var inputSpecFile =
209
209
File ('$parentFolder /github_issue_#$issueNumber .json' );
210
210
211
- var generatedOutput = await generateFromPath (
211
+ await generateFromPath (
212
212
annotatedFile.path,
213
213
process: processRunner,
214
214
openapiSpecFilePath: inputSpecFile.path,
@@ -258,7 +258,7 @@ void main() {
258
258
// var annotatedFileContents = annotatedFile.readAsStringSync();
259
259
var inputSpecFile = File ('$parentFolder /github_issue_#135.json' );
260
260
261
- var generatedOutput = await generateFromPath (annotatedFile.path,
261
+ await generateFromPath (annotatedFile.path,
262
262
process: processRunner, openapiSpecFilePath: inputSpecFile.path);
263
263
264
264
var annotation = await getConstantReaderForPath (file: annotatedFile);
@@ -285,7 +285,7 @@ void main() {
285
285
// var annotatedFileContents = annotatedFile.readAsStringSync();
286
286
var inputSpecFile = File ('$parentFolder /github_issue_#135.json' );
287
287
288
- var generatedOutput = await generateFromPath (annotatedFile.path,
288
+ await generateFromPath (annotatedFile.path,
289
289
process: processRunner, openapiSpecFilePath: inputSpecFile.path);
290
290
291
291
var annotation = await getConstantReaderForPath (file: annotatedFile);
@@ -356,7 +356,7 @@ void main() {
356
356
);
357
357
test ('[dio] Test that generation does not fail' , () async {
358
358
var outputDir = Directory ('./test/specs/issue/$issueNumber /output' );
359
- var generatedOutput = await generateFromAnnotation (
359
+ await generateFromAnnotation (
360
360
Openapi (
361
361
additionalProperties: DioProperties (
362
362
pubName: 'petstore_api' , pubAuthor: 'Johnny_dep' ),
@@ -397,7 +397,7 @@ void main() {
397
397
);
398
398
test ('[dio] Test that generation does not fail' , () async {
399
399
var outputDir = Directory ('./test/specs/issue/$issueNumber /output' );
400
- var generatedOutput = await generateFromAnnotation (
400
+ await generateFromAnnotation (
401
401
Openapi (
402
402
additionalProperties: DioAltProperties (
403
403
pubName: 'issue_api' ,
0 commit comments