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