We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf874f7 commit 2c62814Copy full SHA for 2c62814
1 file changed
tests/Unit/Property/SelectorTest.php
@@ -318,7 +318,17 @@ public function parseExtractsTwoCommentsFromSelector(): void
318
/**
319
* @test
320
*/
321
- public function canConstructObjectWithEmptyState(): void
+ public function constructsObjectWithEmptyStateWithNoArgumetProvided(): void
322
+ {
323
+ $subject = new Selector();
324
+
325
+ self::assertSame('', $subject->getSelector());
326
+ }
327
328
+ /**
329
+ * @test
330
+ */
331
+ public function constructsObjectWithEmptyStateWithEmptyStringProvided(): void
332
{
333
$subject = new Selector('');
334
0 commit comments