for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
use PHPUnit\Framework\TestCase;
class TableTest extends TestCase
{
public function testProducerFirst()
$this->assertTrue(true);
return 'first';
}
public function testProducerSecond()
return 'second';
/**
* @depends testProducerFirst
* @depends testProducerSecond
*/
public function testConsumer($a, $b)
$this->assertSame('first', $a);
$this->assertSame('second', $b);
public function testprepare(){
$this->assertSame(Table::$pageExt, null);
var_dump('passed');
var_dump('passed')