예제 #1
0
파일: EntryTest.php 프로젝트: nicodh/devlog
 /**
  * @test
  * @covers \Devlog\Devlog\Domain\Model\Entry::setLine
  */
 public function setLineForIntegerSetsLine()
 {
     $this->subject->setLine(42);
     $this->assertAttributeEquals(42, 'line', $this->subject);
 }