Файл: symfony-2.7/src/Symfony/Bridge/Doctrine/Tests/HttpFoundation/DbalSessionHandlerTest.php
Строк: 46
<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace SymfonyBridgeDoctrineTestsHttpFoundation;
use SymfonyBridgeDoctrineHttpFoundationDbalSessionHandler;
/**
* Test class for DbalSessionHandler.
*
* @author Drak <drak@zikula.org>
*/
class DbalSessionHandlerTest extends PHPUnit_Framework_TestCase
{
public function testConstruct()
{
$connection = $this->getMockBuilder('DoctrineDBALConnection')->disableOriginalConstructor()->getMock();
$handler = new DbalSessionHandler($connection);
}
}