Skip to content

Commit

Permalink
Fix CS/WS issues
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianbergmann committed Feb 5, 2023
1 parent 9627211 commit 008963b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/unit/Framework/TestBuilderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,15 @@ public static function provideWithAnnotationsAndDataProvider(): array
public function testWithAnnotations(string $methodName): void
{
$test = (new TestBuilder)->build(new ReflectionClass(TestWithAnnotations::class), $methodName);

$this->assertInstanceOf(TestWithAnnotations::class, $test);
}

#[DataProvider('provideWithAnnotationsAndDataProvider')]
public function testWithAnnotationsAndDataProvider(string $methodName): void
{
$test = (new TestBuilder)->build(new ReflectionClass(TestWithAnnotations::class), $methodName);

$this->assertInstanceOf(DataProviderTestSuite::class, $test);
}
}

0 comments on commit 008963b

Please sign in to comment.