Skip to content

Commit

Permalink
Add an example unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
mvdnbrk committed Sep 4, 2024
1 parent f924453 commit 7195d2c
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions tests/Unit/ExampleTest.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<?php

namespace Tests\Unit;

use PHPUnit\Framework\Attributes\Test;
use Tests\TestCase;

class ExampleTest extends TestCase
{
#[Test]
public function test_that_true_is_true(): void
{
$this->assertTrue(true);
}
}

0 comments on commit 7195d2c

Please sign in to comment.