Файл: onlinepoisk.wm-scripts.ru/vendor/silex/silex/silex/src/Silex/WebTestCase.php
Строк: 51
<?php
/*
* This file is part of the Silex framework.
*
* (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 Silex;
use SymfonyComponentHttpKernelClient;
use SymfonyComponentHttpKernelHttpKernel;
/**
* WebTestCase is the base class for functional tests.
*
* @author Igor Wiedler <igor@wiedler.ch>
*/
abstract class WebTestCase extends PHPUnit_Framework_TestCase
{
protected $app;
/**
* PHPUnit setUp for setting up the application.
*
* Note: Child classes that define a setUp method must call
* parent::setUp().
*/
public function setUp()
{
$this->app = $this->createApplication();
}
/**
* Creates the application.
*
* @return HttpKernel
*/
abstract public function createApplication();
/**
* Creates a Client.
*
* @param array $server An array of server parameters
*
* @return Client A Client instance
*/
public function createClient(array $server = array())
{
return new Client($this->app, $server);
}
}