mirror of
https://github.com/pestphp/pest.git
synced 2026-03-11 10:17:23 +01:00
14 lines
154 B
PHP
14 lines
154 B
PHP
<?php
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
/**
|
|
* @return TestCase
|
|
*/
|
|
function myAssertTrue($value)
|
|
{
|
|
test()->assertTrue($value);
|
|
|
|
return test();
|
|
}
|