Skip to content

Commit

Permalink
add import
Browse files Browse the repository at this point in the history
  • Loading branch information
cosmastech committed Jul 21, 2024
1 parent a07f9a7 commit 4ebc1ff
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tests/Adapters/InMemory/InMemoryTimingTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
use DateTimeImmutable;
use PHPUnit\Framework\Attributes\DataProviderExternal;
use PHPUnit\Framework\Attributes\Test;
use UnitEnum;

class InMemoryTimingTest extends BaseTestCase
{
Expand Down Expand Up @@ -81,7 +82,7 @@ public function withDefaultTags_mergesTags(): void
}

#[Test]
public function time_storesDurationOfClosure(): void
public function time_recordsDurationOfClosure(): void
{
// Given
$inMemoryClient = new InMemoryClientAdapter(
Expand All @@ -107,7 +108,7 @@ public function time_storesDurationOfClosure(): void

#[Test]
#[DataProviderExternal(EnumProvider::class, 'differentEnumTypesAndExpectedStringDataProvider')]
public function enumAsStat_recordsStatAsString(\UnitEnum $case, string $converted): void
public function enumAsStat_recordsStatAsString(UnitEnum $case, string $converted): void
{
// Given
$inMemoryClient = new InMemoryClientAdapter();
Expand Down

0 comments on commit 4ebc1ff

Please sign in to comment.