Skip to content

Commit

Permalink
Tests to CekurteComponentBundle.
Browse files Browse the repository at this point in the history
  • Loading branch information
jpcercal committed Apr 15, 2015
1 parent 1b002a8 commit 519e7b4
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions tests/CekurteComponentBundleTest.php
@@ -0,0 +1,31 @@
<?php

/*
* This file is part of the Cekurte package.
*
* (c) João Paulo Cercal <jpcercal@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Cekurte\ComponentBundle\Tests;

/**
* Class CekurteComponentBundleTest
*
* @author João Paulo Cercal <jpcercal@gmail.com>
*
* @version 2.0
*/
class CekurteComponentBundleTest extends \PHPUnit_Framework_TestCase
{
public function testInheritedOfBundle()
{
$reflection = new \ReflectionClass('\\Cekurte\\ComponentBundle\\CekurteComponentBundle');

$this->assertTrue($reflection->isSubclassOf(
'\\Symfony\\Component\\HttpKernel\\Bundle\\Bundle'
));
}
}

0 comments on commit 519e7b4

Please sign in to comment.