| 1 | <?php |
||
| 20 | class IvoryGoogleMapBundleTest extends \PHPUnit_Framework_TestCase |
||
| 21 | { |
||
| 22 | /** |
||
| 23 | * @var IvoryGoogleMapBundle |
||
| 24 | */ |
||
| 25 | private $bundle; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * {@inheritdoc} |
||
| 29 | */ |
||
| 30 | protected function setUp() |
||
| 31 | { |
||
| 32 | $this->bundle = new IvoryGoogleMapBundle(); |
||
| 33 | } |
||
| 34 | |||
| 35 | public function testBundle() |
||
| 36 | { |
||
| 37 | $this->assertInstanceOf(Bundle::class, $this->bundle); |
||
| 38 | } |
||
| 39 | } |
||
| 40 |