Skip to content

Commit f851b74

Browse files
committed
Fixing psalm issues
Signed-off-by: Eric Richer [email protected] <[email protected]>
1 parent 77b9a4b commit f851b74

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

test/AutoTest.php

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,11 @@ public function testConstructor(): void
1414
$auto = new Auto('foo');
1515
$this->assertEquals('foo', $auto->getName());
1616
}
17+
18+
public function testSetName(): void
19+
{
20+
$auto = new Auto('foo');
21+
$auto->setName('bar');
22+
$this->assertEquals('bar', $auto->getName());
23+
}
1724
}

0 commit comments

Comments
 (0)