mirror of
https://github.com/pnx/neotest-phpunit
synced 2026-06-16 03:54:55 +02:00
11 lines
163 B
PHP
11 lines
163 B
PHP
<?php
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class NestingTest extends TestCase
|
|
{
|
|
public function testIsTrue(): void
|
|
{
|
|
$this->assertTrue(true);
|
|
}
|
|
}
|