Skip to content

Instantly share code, notes, and snippets.

@caramelchocolate
Created March 9, 2020 11:38
Show Gist options
  • Save caramelchocolate/4372be3f99c567f902d3bf4c553f67cd to your computer and use it in GitHub Desktop.
Save caramelchocolate/4372be3f99c567f902d3bf4c553f67cd to your computer and use it in GitHub Desktop.
simple TestClass php file
<?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