Code
Explorer
You are a developer and looking for Shopware projects?
Apply Now!
GuessedNameBundle example
$bundle
=
new
ExtensionPresentBundle
(
)
;
$this
->
assertInstanceOf
(
'Symfony\Component\HttpKernel\Tests\Fixtures\ExtensionPresentBundle\DependencyInjection\ExtensionPresentExtension',
$bundle
->
getContainerExtension
(
)
)
;
}
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
(
)
)
;