1
0
Fork 0
mirror of https://github.com/pnx/neotest-phpunit synced 2026-06-16 03:54:55 +02:00
neotest-phpunit/tests/Unit/ExampleTest.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);
}
}