Skip to content

Instantly share code, notes, and snippets.

@pc-magas
Created July 16, 2019 11:55
Show Gist options
  • Save pc-magas/63bd0e5bbcee07449b051f7e34fdffcb to your computer and use it in GitHub Desktop.
Save pc-magas/63bd0e5bbcee07449b051f7e34fdffcb to your computer and use it in GitHub Desktop.
A simple code Snipper to check the functionality of `assertEmpty`
<?php
namespace Tests\Unit;
use PHPUnit\Framework\TestCase;
class TestTemp extends TestCase
{
public function testAssertEmpty()
{
$this->assertEmpty(0);
}
public function testAssertEmptyNoZero()
{
$this->assertEmpty(1);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment