@covers Symfony\Component\DependencyInjection\Definition::setFile @covers Symfony\Component\DependencyInjection\Definition::getFile
public function testSetGetFile() {
$def = new Definition('stdClass');
$this
->assertSame($def, $def
->setFile('foo'), '->setFile() implements a fluent interface');
$this
->assertEquals('foo', $def
->getFile(), '->getFile() returns the file to include');
}