Skip to content

Commit

Permalink
Create sample test
Browse files Browse the repository at this point in the history
  • Loading branch information
felix-schindler committed May 11, 2023
1 parent ad6510c commit 3bc6d9e
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions tests/SampleTest.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?php

use PHPUnit\Framework\TestCase;

class SampleTest extends TestCase
{
function testSample(): void
{
$this->assertTrue(true);
$this->assertFalse(false);
}
}

0 comments on commit 3bc6d9e

Please sign in to comment.