Skip to content

Commit e4bdcb2

Browse files
committed
Add missing subject suffixes to test method names
1 parent 282d565 commit e4bdcb2

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

packages/framework/tests/Feature/PublicationFieldValueObjectsTest.php

+7-7
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ public function testStringFieldToYaml()
8686
$this->assertSame('foo', $this->getYaml(new StringField('foo')));
8787
}
8888

89-
public function testStringParsingOptions()
89+
public function testStringFieldParsingOptions()
9090
{
9191
$this->assertSame('foo', (new StringField('foo'))->getValue());
9292
$this->assertSame('true', (new StringField('true'))->getValue());
@@ -171,7 +171,7 @@ public function testBooleanFieldWithInvalidInput()
171171
new BooleanField('foo');
172172
}
173173

174-
public function testBooleanParsingOptions()
174+
public function testBooleanFieldParsingOptions()
175175
{
176176
$this->assertSame(true, (new BooleanField('true'))->getValue());
177177
$this->assertSame(true, (new BooleanField('1'))->getValue());
@@ -213,7 +213,7 @@ public function testIntegerFieldWithInvalidInput()
213213
new IntegerField('foo');
214214
}
215215

216-
public function testIntegerParsingOptions()
216+
public function testIntegerFieldParsingOptions()
217217
{
218218
$this->assertSame(0, (new IntegerField('0'))->getValue());
219219
$this->assertSame(1, (new IntegerField('1'))->getValue());
@@ -259,7 +259,7 @@ public function testFloatFieldWithInvalidInput()
259259
new FloatField('foo');
260260
}
261261

262-
public function testFloatParsingOptions()
262+
public function testFloatFieldParsingOptions()
263263
{
264264
$this->assertSame(0.0, (new FloatField('0'))->getValue());
265265
$this->assertSame(1.0, (new FloatField('1'))->getValue());
@@ -298,7 +298,7 @@ public function testArrayFieldToYaml()
298298
$this->assertSame("- foo\n", $this->getYaml(new ArrayField('foo')));
299299
}
300300

301-
public function testArrayParsingOptions()
301+
public function testArrayFieldParsingOptions()
302302
{
303303
$this->assertSame(['foo'], (new ArrayField('foo'))->getValue());
304304
$this->assertSame(['true'], (new ArrayField('true'))->getValue());
@@ -348,7 +348,7 @@ public function testTextFieldToYaml()
348348
// Note that this does not use the same flags as the creator action, because that's out of scope for this test.
349349
}
350350

351-
public function testTextParsingOptions()
351+
public function testTextFieldParsingOptions()
352352
{
353353
$this->assertSame('foo', (new TextField('foo'))->getValue());
354354
$this->assertSame('true', (new TextField('true'))->getValue());
@@ -453,7 +453,7 @@ public function testTagFieldToYaml()
453453
$this->assertSame("- foo\n", $this->getYaml(new TagField('foo')));
454454
}
455455

456-
public function testTagParsingOptions()
456+
public function testTagFieldParsingOptions()
457457
{
458458
$this->assertSame(['foo'], (new TagField('foo'))->getValue());
459459
$this->assertSame(['true'], (new TagField('true'))->getValue());

0 commit comments

Comments
 (0)