Skip to content

Instantly share code, notes, and snippets.

@createproblem
Created October 8, 2013 12:46
Show Gist options
  • Save createproblem/6884139 to your computer and use it in GitHub Desktop.
Save createproblem/6884139 to your computer and use it in GitHub Desktop.
<?php
/*
* This file is part of the g5ToolsBundle package.
*
* (c) createproblem <https://github.com/createproblem/>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace g5\Tests;
use g5\ToolsBundle\g5ToolsBundle;
class g5ToolsBundleTest extends \PHPUnit_Framework_TestCase
{
public function testBuild()
{
$mock = $this->getMock('Symfony\Component\DependencyInjection\ContainerBuilder');
$bunlde = new g5ToolsBundle();
$bunlde->build($mock);
$this->assertEquals('g5ToolsBundle', $bunlde->getName());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment