1 | <?php |
||
19 | class CommandTest extends \PHPUnit_Framework_TestCase |
||
20 | { |
||
21 | /** |
||
22 | * @var Command |
||
23 | */ |
||
24 | protected $command; |
||
25 | |||
26 | protected $table = 'testAction'; |
||
27 | protected $columns = ['a' => 'b']; |
||
28 | |||
29 | protected function setUp() |
||
36 | |||
37 | protected function tearDown() |
||
40 | |||
41 | public function testInsert() |
||
45 | } |
||
46 |