@@ -6,7 +6,9 @@ void main() {
66 final TestOptions testOptions = TestOptions ();
77
88 group ('description tests' , () {
9- test ('ValueWithTestOptions with only String values are wrapped with \' quotes\' ' , () {
9+ test (
10+ 'ValueWithTestOptions with only String values are wrapped with \' quotes\' ' ,
11+ () {
1012 final result = ValueWithTestOptions (
1113 ['a' , 'b' , '' , ' ' ],
1214 testOptions,
@@ -15,15 +17,17 @@ void main() {
1517 expect (result, "[ 'a', 'b', '', ' ' ]" );
1618 });
1719
18- test ('ValueWithTestOptions with mixed types only String values are wrapped with \' quotes\' ' , () {
20+ test (
21+ 'ValueWithTestOptions with mixed types only String values are wrapped with \' quotes\' ' ,
22+ () {
1923 final result = ValueWithTestOptions (
2024 ['a' , 'b' , '' , ' ' , 1 , 1.5 , true , _ClassWithToString ()],
2125 testOptions,
2226 ).description;
2327
24- expect (result, "[ 'a', 'b', '', ' ', 1, 1.5, true, class with toString ]" );
28+ expect (
29+ result, "[ 'a', 'b', '', ' ', 1, 1.5, true, class with toString ]" );
2530 });
26-
2731 });
2832}
2933
0 commit comments