File tree Expand file tree Collapse file tree 2 files changed +18
-2
lines changed Expand file tree Collapse file tree 2 files changed +18
-2
lines changed Original file line number Diff line number Diff line change 11<?xml version =" 1.0" encoding =" UTF-8" ?>
22<phpunit xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance" xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/10.5/phpunit.xsd" bootstrap =" vendor/autoload.php" colors =" true" >
33 <testsuites >
4- <!-- < testsuite name="Unit">
4+ <testsuite name =" Unit" >
55 <directory suffix =" Test.php" >./tests/Unit</directory >
6- </testsuite> -->
6+ </testsuite >
77 <testsuite name =" Feature" >
88 <directory suffix =" Test.php" >./tests/Feature</directory >
99 </testsuite >
Original file line number Diff line number Diff line change 1+ <?php
2+
3+ namespace Tests \Unit ;
4+
5+ use PHPUnit \Framework \TestCase ;
6+
7+ class ExampleTest extends TestCase
8+ {
9+ /**
10+ * A basic test example.
11+ */
12+ public function test_that_true_is_true (): void
13+ {
14+ $ this ->assertTrue (true );
15+ }
16+ }
You can’t perform that action at this time.
0 commit comments