mirror of
https://github.com/pestphp/pest.git
synced 2026-03-06 07:47:22 +01:00
18 lines
262 B
PHP
18 lines
262 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Tests\CustomTestCase;
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
use function PHPUnit\Framework\assertTrue;
|
|
|
|
class CustomTestCase extends TestCase
|
|
{
|
|
public function assertCustomTrue()
|
|
{
|
|
assertTrue(true);
|
|
}
|
|
}
|