Skip to content

Commit b657f1d

Browse files
committed
Test: Add test for current phpunit fixers
1 parent 1f5d5a5 commit b657f1d

File tree

3 files changed

+63
-0
lines changed

3 files changed

+63
-0
lines changed

tests/Integration/CodingStandardTest.php

+1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ public function provideFilesToFix(): array
3737
__DIR__ . '/Fixtures/NewPhpFeatures.correct.php.inc',
3838
],
3939
'PhpDoc' => [__DIR__ . '/Fixtures/PhpDoc.wrong.php.inc', __DIR__ . '/Fixtures/PhpDoc.correct.php.inc'],
40+
'PhpUnit' => [__DIR__ . '/Fixtures/PhpUnit.wrong.php.inc', __DIR__ . '/Fixtures/PhpUnit.correct.php.inc'],
4041
];
4142
}
4243

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
<?php declare(strict_types=1);
2+
3+
namespace Lmc\CodingStandard\Integration\Fixtures;
4+
5+
use PHPUnit\Framework\TestCase;
6+
7+
class PhpUnit extends TestCase
8+
{
9+
// PhpUnitSetUpTearDownVisibilityFixer
10+
protected function setUp(): void
11+
{
12+
parent::setUp();
13+
}
14+
15+
public function testShouldDoSomething(): void
16+
{
17+
$data = true;
18+
19+
// PhpUnitConstructFixer
20+
$this->assertTrue($data);
21+
22+
// PhpUnitDedicateAssertFixer
23+
$this->assertStringContainsString('o', 'foo');
24+
25+
$this->assertSame(1, 2);
26+
// PhpUnitTestCaseStaticMethodCallsFixer
27+
$this->assertSame(1, 2);
28+
// PhpUnitTestCaseStaticMethodCallsFixer
29+
$this->assertSame(1, 2);
30+
}
31+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
<?php declare(strict_types=1);
2+
3+
namespace Lmc\CodingStandard\Integration\Fixtures;
4+
5+
use PHPUnit\Framework\TestCase;
6+
7+
class PhpUnit extends TestCase
8+
{
9+
// PhpUnitSetUpTearDownVisibilityFixer
10+
public function setUp(): void
11+
{
12+
parent::setUp();
13+
}
14+
15+
public function testShouldDoSomething(): void
16+
{
17+
$data = true;
18+
19+
// PhpUnitConstructFixer
20+
$this->assertSame(true, $data);
21+
22+
// PhpUnitDedicateAssertFixer
23+
$this->assertTrue(str_contains('foo', 'o'));
24+
25+
$this->assertSame(1, 2);
26+
// PhpUnitTestCaseStaticMethodCallsFixer
27+
self::assertSame(1, 2);
28+
// PhpUnitTestCaseStaticMethodCallsFixer
29+
static::assertSame(1, 2);
30+
}
31+
}

0 commit comments

Comments
 (0)