Skip to content

Commit 0658328

Browse files
committed
Update mysqliTest.php
1 parent cc6b579 commit 0658328

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

tests/mysqli/mysqliTest.php

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -413,6 +413,10 @@ public function testSelecting()
413413
}
414414

415415
/**
416+
* @covers ezsql\Database\ez_mysqli::query
417+
* @covers ezsql\Database\ez_mysqli::query_prepared
418+
* @covers ezsql\Database\ez_mysqli::fetch_prepared_result
419+
* @covers ezsql\Database\ez_mysqli::prepareValues
416420
* @covers ezsql\ezQuery::create
417421
* @covers ezsql\ezQuery::insert
418422
* @covers ezsql\ezQuery::selecting
@@ -517,15 +521,16 @@ public function testInsert_select()
517521
* @covers ezsql\ezQuery::conditionBetween
518522
* @covers ezsql\ezQuery::conditions
519523
* @covers ezsql\ezQuery::conditionIn
524+
* @covers ezsql\ezQuery::processConditions
520525
* @covers \where
521526
*/
522527
public function testWhere()
523528
{
524529
$this->object->prepareOff();
525530
$expect = where(
526-
between('where_test', 'testing 1', 'testing 2'),
527-
like('test_null', 'null')
528-
);
531+
where(between('where_test', 'testing 1', 'testing 2'),
532+
like('test_null', 'null'))
533+
);
529534

530535
$this->assertContains('WHERE where_test BETWEEN \'testing 1\' AND \'testing 2\' AND test_null IS NULL', $expect);
531536

0 commit comments

Comments
 (0)