Skip to content

Commit 5f993b7

Browse files
authored
Remove test for selectCount without parameter
1 parent 3611898 commit 5f993b7

1 file changed

Lines changed: 0 additions & 13 deletions

File tree

tests/system/Database/Builder/SelectTest.php

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -199,19 +199,6 @@ public function testSelectSumWithAlias()
199199

200200
//--------------------------------------------------------------------
201201

202-
public function testSelectCountWithNoParameter()
203-
{
204-
$builder = new BaseBuilder('invoices', $this->db);
205-
206-
$builder->selectCount();
207-
208-
$expected = 'SELECT COUNT("*") AS "count" FROM "invoices"';
209-
210-
$this->assertEquals($expected, str_replace("\n", ' ', $builder->getCompiledSelect()));
211-
}
212-
213-
//--------------------------------------------------------------------
214-
215202
public function testSelectCountWithNoAlias()
216203
{
217204
$builder = new BaseBuilder('invoices', $this->db);

0 commit comments

Comments
 (0)