mirror of
https://github.com/pestphp/pest.git
synced 2026-04-20 22:20:17 +02:00
17 lines
270 B
PHP
17 lines
270 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Tests\CustomTestCase;
|
|
|
|
use function PHPUnit\Framework\assertTrue;
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
abstract class CustomTestCase extends TestCase
|
|
{
|
|
public function assertCustomTrue()
|
|
{
|
|
assertTrue(true);
|
|
}
|
|
}
|