Skip to content

Commit

Permalink
Add test for Package::hasReachedStatus() with invalid status
Browse files Browse the repository at this point in the history
  • Loading branch information
gmazzap committed Aug 28, 2024
1 parent 18f63b1 commit 0d97bbe
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tests/unit/PackageTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ public function testBasic(): void
static::assertTrue($package->hasReachedStatus(Package::STATUS_INITIALIZED));
static::assertTrue($package->hasReachedStatus(Package::STATUS_BOOTING));
static::assertTrue($package->hasReachedStatus(Package::STATUS_BOOTED));
static::assertFalse($package->hasReachedStatus(3));

static::assertSame($expectedName, $package->name());
static::assertInstanceOf(Properties::class, $package->properties());
Expand Down

0 comments on commit 0d97bbe

Please sign in to comment.