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