File tree 2 files changed +18
-2
lines changed
2 files changed +18
-2
lines changed Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
2
<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" >
3
3
<testsuites >
4
- <!-- < testsuite name="Unit">
4
+ <testsuite name =" Unit" >
5
5
<directory suffix =" Test.php" >./tests/Unit</directory >
6
- </testsuite> -->
6
+ </testsuite >
7
7
<testsuite name =" Feature" >
8
8
<directory suffix =" Test.php" >./tests/Feature</directory >
9
9
</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