Skip to content

Commit

Permalink
add missing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
yceruto committed Aug 4, 2024
1 parent af9c238 commit 402b828
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions tests/Envelope/Stamp/StampsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,15 @@ public function testAdd(): void
$this->assertCount(2, $stamps);
}

public function testHas(): void
{
$stamps = new Stamps([
new HandledStamp(true),
]);

$this->assertTrue($stamps->has(HandledStamp::class));
}

public function testFirst(): void
{
$stamps = new Stamps([
Expand Down

0 comments on commit 402b828

Please sign in to comment.