Exemplo n.º 1
0
 public function testGetActivePostsCountByCategoryFailure()
 {
     $repository = new MysqlPostRepository(self::$connection);
     $data = $repository->getActivePostsCountByCategory('');
     $this->assertNotFalse($data);
     $this->assertStringMatchesFormat('%d', $data);
     $this->assertEquals('0', $data);
 }