for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Prelude\Tests;
use function Prelude\gte;
class GteTest extends \PHPUnit\Framework\TestCase
{
/**
* @test
*/
public function shouldReturnTrue()
$this->assertTrue(gte(10)(10));
$this->assertTrue(gte(10)(9));
}
public function shouldReturnFalse()
$this->assertFalse(gte(10)(11));