for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Prelude\Tests;
use function Prelude\not;
class NotTest extends \PHPUnit_Framework_TestCase
{
/**
* @test
*/
public function shouldReturnTrue()
$this->assertTrue(not(false));
}
public function shouldReturnFalse()
$this->assertFalse(not(true));