Skip to content

Commit d4e5f13

Browse files
committed
Add phpunit placeholders
1 parent 385f784 commit d4e5f13

File tree

4 files changed

+38
-1
lines changed

4 files changed

+38
-1
lines changed

tests/CacheTest.php

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<?php
2+
3+
use PHPUnit\Framework\TestCase;
4+
5+
final class CacheTest extends TestCase
6+
{
7+
public function testPlaceholder(): void
8+
{
9+
// @phpstan-ignore method.alreadyNarrowedType
10+
$this->assertTrue(true); // TODO write tests
11+
}
12+
}

tests/LogCollectionTest.php

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<?php
2+
3+
use PHPUnit\Framework\TestCase;
4+
5+
final class LogCollectionTest extends TestCase
6+
{
7+
public function testPlaceholder(): void
8+
{
9+
// @phpstan-ignore method.alreadyNarrowedType
10+
$this->assertTrue(true); // TODO write tests
11+
}
12+
}

tests/LogFileTest.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ public function testLogLineHasText(array $line, string $query, bool $meta, bool
1919
$log = new LogFile('logfile', 'logfile', []);
2020
$log->addLine($line);
2121

22-
$this->assertTrue(true); // TODO
22+
// @phpstan-ignore method.alreadyNarrowedType
23+
$this->assertTrue(true); // TODO write tests
2324
}
2425
}

tests/LogManagerTest.php

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<?php
2+
3+
use PHPUnit\Framework\TestCase;
4+
5+
final class LogManagerTest extends TestCase
6+
{
7+
public function testPlaceholder(): void
8+
{
9+
// @phpstan-ignore method.alreadyNarrowedType
10+
$this->assertTrue(true); // TODO write tests
11+
}
12+
}

0 commit comments

Comments
 (0)