File tree Expand file tree Collapse file tree 4 files changed +22
-2
lines changed Expand file tree Collapse file tree 4 files changed +22
-2
lines changed Original file line number Diff line number Diff line change
1
+ ## 1.1.2
2
+ - Added #13 : String values are wrapped with quotes in test output. This makes it easier to see if a string value is empty or contains spaces.
3
+ - Updated lints package
4
+ - Fixed small lint issue
5
+
1
6
## 1.1.1
2
7
- Exported parameterizedGroup base and numeric and parameterizedTest from parameterized_test numeric functions.
3
8
Original file line number Diff line number Diff line change @@ -81,6 +81,22 @@ parameterizedTest(
81
81
);
82
82
` ` `
83
83
84
+ or
85
+
86
+ ` ` ` dart
87
+ parameterizedTest2(
88
+ 'Amount of letters tests',
89
+ [
90
+ ['kiwi', 4],
91
+ ['apple', 5],
92
+ ['banana', 6],
93
+ ],
94
+ (String word, int length) {
95
+ expect(word.length, length);
96
+ },
97
+ );
98
+ ` ` `
99
+
84
100
Example parameterizedTest with extra test options for a value :
85
101
86
102
` ` ` dart
Original file line number Diff line number Diff line change @@ -2,7 +2,6 @@ import 'package:meta/meta.dart';
2
2
import 'package:test/test.dart' ;
3
3
4
4
import '../parameterized_test.dart' ;
5
- import 'parameterized_group_base.dart' ;
6
5
7
6
/// Parameterized group with 1 input arguments. See [parameterizedGroup] for more info.
8
7
@isTestGroup
Original file line number Diff line number Diff line change 1
1
name : parameterized_test
2
2
description : Simple package that helps with executing parameterized tests. Inspired by JUnit ParameterizedTest.
3
- version : 1.1.1
3
+ version : 1.1.2
4
4
homepage : https://www.github.com/DutchCodingCompany/parameterized_test
5
5
6
6
environment :
You can’t perform that action at this time.
0 commit comments