Skip to content

Commit dce4c6f

Browse files
chore: modify docker_action.yml file
1 parent 980a35a commit dce4c6f

File tree

2 files changed

+18
-2
lines changed

2 files changed

+18
-2
lines changed

phpunit.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
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>

tests/Unit/ExampleTest.php

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
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+
}

0 commit comments

Comments
 (0)