Exemplo n.º 1
0
 /**
  * @test
  * @covers Cocur\Arff\ArffFile::__construct()
  * @covers Cocur\Arff\ArffFile::getName()
  */
 public function constructorSetsNameAndGetNameReturnsName()
 {
     $file = new ArffFile('foo');
     $this->assertEquals('foo', $file->getName());
 }