Skip to content

Commit

Permalink
main: new example test class created.
Browse files Browse the repository at this point in the history
  • Loading branch information
mkeremcansev committed Jul 20, 2023
1 parent 28a9216 commit 39267c6
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions tests/Unit/ExampleTest.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<?php

namespace Tests\Unit;

use PHPUnit\Framework\TestCase;

class ExampleTest extends TestCase
{
/**
* A basic test example.
*/
public function test_that_true_is_true(): void
{
$this->assertTrue(true);
}
}

0 comments on commit 39267c6

Please sign in to comment.