mirror of
https://github.com/danog/psalm-plugin-phpunit.git
synced 2024-12-02 17:38:12 +01:00
16 lines
329 B
PHP
16 lines
329 B
PHP
<?php
|
|
|
|
namespace PHPUnit\Framework;
|
|
|
|
use PHPUnit\Framework\MockObject\MockObject;
|
|
|
|
abstract class TestCase extends Assert implements Test, SelfDescribing
|
|
{
|
|
/**
|
|
* @template T
|
|
* @template-typeof T $class
|
|
* @param class-string $class
|
|
* @return MockObject&T
|
|
*/
|
|
public function createMock($class) {}
|
|
} |