@@ -86,7 +86,7 @@ public function testStringFieldToYaml()
86
86
$ this ->assertSame ('foo ' , $ this ->getYaml (new StringField ('foo ' )));
87
87
}
88
88
89
- public function testStringParsingOptions ()
89
+ public function testStringFieldParsingOptions ()
90
90
{
91
91
$ this ->assertSame ('foo ' , (new StringField ('foo ' ))->getValue ());
92
92
$ this ->assertSame ('true ' , (new StringField ('true ' ))->getValue ());
@@ -171,7 +171,7 @@ public function testBooleanFieldWithInvalidInput()
171
171
new BooleanField ('foo ' );
172
172
}
173
173
174
- public function testBooleanParsingOptions ()
174
+ public function testBooleanFieldParsingOptions ()
175
175
{
176
176
$ this ->assertSame (true , (new BooleanField ('true ' ))->getValue ());
177
177
$ this ->assertSame (true , (new BooleanField ('1 ' ))->getValue ());
@@ -213,7 +213,7 @@ public function testIntegerFieldWithInvalidInput()
213
213
new IntegerField ('foo ' );
214
214
}
215
215
216
- public function testIntegerParsingOptions ()
216
+ public function testIntegerFieldParsingOptions ()
217
217
{
218
218
$ this ->assertSame (0 , (new IntegerField ('0 ' ))->getValue ());
219
219
$ this ->assertSame (1 , (new IntegerField ('1 ' ))->getValue ());
@@ -259,7 +259,7 @@ public function testFloatFieldWithInvalidInput()
259
259
new FloatField ('foo ' );
260
260
}
261
261
262
- public function testFloatParsingOptions ()
262
+ public function testFloatFieldParsingOptions ()
263
263
{
264
264
$ this ->assertSame (0.0 , (new FloatField ('0 ' ))->getValue ());
265
265
$ this ->assertSame (1.0 , (new FloatField ('1 ' ))->getValue ());
@@ -298,7 +298,7 @@ public function testArrayFieldToYaml()
298
298
$ this ->assertSame ("- foo \n" , $ this ->getYaml (new ArrayField ('foo ' )));
299
299
}
300
300
301
- public function testArrayParsingOptions ()
301
+ public function testArrayFieldParsingOptions ()
302
302
{
303
303
$ this ->assertSame (['foo ' ], (new ArrayField ('foo ' ))->getValue ());
304
304
$ this ->assertSame (['true ' ], (new ArrayField ('true ' ))->getValue ());
@@ -348,7 +348,7 @@ public function testTextFieldToYaml()
348
348
// Note that this does not use the same flags as the creator action, because that's out of scope for this test.
349
349
}
350
350
351
- public function testTextParsingOptions ()
351
+ public function testTextFieldParsingOptions ()
352
352
{
353
353
$ this ->assertSame ('foo ' , (new TextField ('foo ' ))->getValue ());
354
354
$ this ->assertSame ('true ' , (new TextField ('true ' ))->getValue ());
@@ -453,7 +453,7 @@ public function testTagFieldToYaml()
453
453
$ this ->assertSame ("- foo \n" , $ this ->getYaml (new TagField ('foo ' )));
454
454
}
455
455
456
- public function testTagParsingOptions ()
456
+ public function testTagFieldParsingOptions ()
457
457
{
458
458
$ this ->assertSame (['foo ' ], (new TagField ('foo ' ))->getValue ());
459
459
$ this ->assertSame (['true ' ], (new TagField ('true ' ))->getValue ());
0 commit comments