Skip to content

Commit

Permalink
CS/WS fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
epdenouden authored and sebastianbergmann committed Dec 6, 2018
1 parent 94487b2 commit 5805fd7
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tests/unit/Runner/PhptTestCaseTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -84,11 +84,13 @@ protected function tearDown(): void
$this->testCase = null;
}

public function testAlwaysReportsNumberOfAssertionsIsOne(): void {
public function testAlwaysReportsNumberOfAssertionsIsOne(): void
{
$this->assertSame(1, $this->testCase->getNumAssertions());
}

public function testAlwaysReportsItDoesNotUseADataprovider(): void {
public function testAlwaysReportsItDoesNotUseADataprovider(): void
{
$this->assertSame(false, $this->testCase->usesDataProvider());
}

Expand Down

0 comments on commit 5805fd7

Please sign in to comment.