/Tests/DependencyInjection/ConfigurationTest.php

http://github.com/FriendsOfSymfony/FOSFacebookBundle · PHP · 23 lines · 11 code · 4 blank · 8 comment · 0 complexity · 91ce0f32403e8181a46be12066bc4ed2 MD5 · raw file

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