for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Prelude\Tests;
use function Prelude\id;
class IdTest extends \PHPUnit\Framework\TestCase
{
/**
* @test
*/
public function shuldReturnSameValue()
$this->assertEquals('James', id('James'));
}