/Tests/DependencyInjection/ConfigurationTest.php
PHP | 23 lines | 11 code | 4 blank | 8 comment | 0 complexity | 91ce0f32403e8181a46be12066bc4ed2 MD5 | raw file
1<?php 2 3/* 4 * This file is part of the FOSFacebookBundle package. 5 * 6 * (c) FriendsOfSymfony <http://friendsofsymfony.github.com/> 7 * 8 * For the full copyright and license information, please view the LICENSE 9 * file that was distributed with this source code. 10 */ 11 12namespace FOS\FacebookBundle\Tests\DependencyInjection; 13 14use FOS\FacebookBundle\DependencyInjection\Configuration; 15 16class ConfigurationTest extends \PHPUnit_Framework_TestCase 17{ 18 public function testThatCanGetConfigTreeBuilder() 19 { 20 $configuration = new Configuration(); 21 $this->assertInstanceOf('Symfony\Component\Config\Definition\Builder\TreeBuilder', $configuration->getConfigTreeBuilder()); 22 } 23}