for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Tests;
use PHPUnit\Framework\TestCase;
class ClauseTest extends TestCase
{
use \Bonfim\Component\Database\Clause;
public function testWhere()
$this->where('id', 1);
$this->assertEquals('WHERE `id` = :id', $this->clause);
}