예제 #1
0
파일: ArffFileTest.php 프로젝트: cocur/arff
 /**
  * @test
  * @covers Cocur\Arff\ArffFile::__construct()
  * @covers Cocur\Arff\ArffFile::getName()
  */
 public function constructorSetsNameAndGetNameReturnsName()
 {
     $file = new ArffFile('foo');
     $this->assertEquals('foo', $file->getName());
 }