Skip to content

Commit

Permalink
#103 - cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilpiech97 committed Apr 2, 2024
1 parent b81d868 commit f318ac5
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 25 deletions.
15 changes: 13 additions & 2 deletions tests/codestyle/PurgeTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,27 @@

class PurgeTest extends CodestyleTestCase
{
private string $config;
/**
* @throws Exception
*/
public function testPhp82Fixtures(): void
public function testPhp82PurgeMode(): void
{
$this->config = "./tests/codestyle/config/config.purge.php";
$this->testFixture("noComments");
}

/**
* @throws Exception
*/
public function testPhp82PurgeWithoutDocCommentsTest(): void
{
$this->config = "./tests/codestyle/config/config.purge.without.doc.comments.php";
$this->testFixture("noCommentsWithoutDocComments");
}

protected function getConfigPath(): string
{
return "./tests/codestyle/config/config.purge.php";
return $this->config;
}
}
23 changes: 0 additions & 23 deletions tests/codestyle/PurgeWithoutDocCommentsTest.php

This file was deleted.

0 comments on commit f318ac5

Please sign in to comment.