public function testBundleNameIsGuessedFromClass() { $bundle =
new GuessedNameBundle();
$this->
assertSame('Symfony\Component\HttpKernel\Tests\Bundle',
$bundle->
getNamespace());
$this->
assertSame('GuessedNameBundle',
$bundle->
getName());
} public function testBundleNameCanBeExplicitlyProvided() { $bundle =
new NamedBundle();
$this->
assertSame('ExplicitlyNamedBundle',
$bundle->
getName());
$this->
assertSame('Symfony\Component\HttpKernel\Tests\Bundle',
$bundle->
getNamespace());
$this->
assertSame('ExplicitlyNamedBundle',
$bundle->
getName());
}}class NamedBundle extends Bundle
{ public function __construct() {