@covers Symfony\Component\DependencyInjection\Definition::setAbstract @covers Symfony\Component\DependencyInjection\Definition::isAbstract
public function testSetIsAbstract() {
$def = new Definition('stdClass');
$this
->assertFalse($def
->isAbstract(), '->isAbstract() returns false by default');
$this
->assertSame($def, $def
->setAbstract(true), '->setAbstract() implements a fluent interface');
$this
->assertTrue($def
->isAbstract(), '->isAbstract() returns true if the instance must not be public.');
}