zhamao-framework/tests/TestCase.php

16 lines
187 B
PHP
Raw Permalink Normal View History

2022-12-23 17:16:08 +08:00
<?php
declare(strict_types=1);
namespace Tests;
2022-12-25 19:29:44 +08:00
use Prophecy\PhpUnit\ProphecyTrait;
2022-12-23 17:16:08 +08:00
/**
* @internal
*/
class TestCase extends \PHPUnit\Framework\TestCase
{
2022-12-25 19:29:44 +08:00
use ProphecyTrait;
2022-12-23 17:16:08 +08:00
}