Created
March 9, 2020 11:38
-
-
Save caramelchocolate/4372be3f99c567f902d3bf4c553f67cd to your computer and use it in GitHub Desktop.
simple TestClass php file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
use PHPUnit\Framework\TestCase; | |
class aTest extends TestCase | |
{ | |
private $tempDir; | |
protected function setUp(): void | |
{ | |
// ... | |
} | |
protected function tearDown(): void | |
{ | |
// ... | |
} | |
public function testEmpty() { | |
$this->assertEmpty([]); | |
} | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment