コード例 #1
0
 public function testCanGetUnpublished()
 {
     $this->assertCount(0, $this->repository->getUnpublished());
     $this->saveTestArticle(false);
     $this->saveTestArticle(true);
     $this->assertCount(1, $this->repository->getUnpublished());
 }