本文整理汇总了PHP中phpbb_test_case类的典型用法代码示例。如果您正苦于以下问题:PHP phpbb_test_case类的具体用法?PHP phpbb_test_case怎么用?PHP phpbb_test_case使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了phpbb_test_case类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: setUpBeforeClass
public static function setUpBeforeClass()
{
parent::setUpBeforeClass();
if (version_compare(PHP_VERSION, '5.3.19', '<')) {
self::markTestSkipped('UI test case requires at least PHP 5.3.19.');
} else {
if (!class_exists('\\RemoteWebDriver')) {
self::markTestSkipped('Could not find RemoteWebDriver class. ' . 'Run "php ../composer.phar install" from the tests folder.');
}
}
self::$config = phpbb_test_case_helpers::get_test_config();
self::$root_url = self::$config['phpbb_functional_url'];
// Important: this is used both for installation and by
// test cases for querying the tables.
// Therefore table prefix must be set before a board is
// installed, and also before each test case is run.
self::$config['table_prefix'] = 'phpbb_';
if (!isset(self::$config['phpbb_functional_url'])) {
self::markTestSkipped('phpbb_functional_url was not set in test_config and wasn\'t set as PHPBB_FUNCTIONAL_URL environment variable either.');
}
if (!self::$webDriver) {
try {
$capabilities = array(\WebDriverCapabilityType::BROWSER_NAME => 'firefox');
self::$webDriver = RemoteWebDriver::create(self::$host . ':' . self::$port, $capabilities);
} catch (WebDriverCurlException $e) {
self::markTestSkipped('PhantomJS webserver is not running.');
}
}
if (!self::$already_installed) {
self::install_board();
self::$already_installed = true;
}
}
示例2: setUp
protected function setUp()
{
parent::setUp();
$this->test = new mpv_tests_modx(new mpv());
$this->test->modx_object = new phpbb_mock_modx_object();
$this->version = new phpbb_mock_modx_version();
}
示例3: setUp
public function setUp()
{
parent::setUp();
$filesystem = new \phpbb\filesystem\filesystem();
$this->set_phpbb_root_path($filesystem);
$this->path_helper = new \phpbb\path_helper(new \phpbb\symfony_request(new phpbb_mock_request()), new \phpbb\filesystem\filesystem(), $this->getMock('\\phpbb\\request\\request'), $this->phpbb_root_path, 'php');
}
示例4: setUpBeforeClass
public static function setUpBeforeClass()
{
parent::setUpBeforeClass();
$reflection_class = new ReflectionClass('\\phpbb\\extension\\base');
self::$reflection_method_get_migration_file_list = $reflection_class->getMethod('get_migration_file_list');
self::$reflection_method_get_migration_file_list->setAccessible(true);
}
示例5: setUp
protected function setUp()
{
parent::setUp();
global $user;
$user = new phpbb_mock_user();
$user->lang = new phpbb_mock_lang();
}
示例6: setUpBeforeClass
public static function setUpBeforeClass()
{
parent::setUpBeforeClass();
$reflection = new ReflectionClass('\\phpbb\\language\\language');
self::$language_reflection_lang = $reflection->getProperty('lang');
self::$language_reflection_lang->setAccessible(true);
}
示例7: setUp
public function setUp()
{
parent::setUp();
$this->user = new \phpbb\user('\\phpbb\\datetime');
$this->user->data = array('user_lang' => 'en');
$this->user->add_lang('common');
}
示例8: setUp
protected function setUp()
{
parent::setUp();
global $config, $user, $request;
$user = new phpbb_mock_user();
$request = new phpbb_mock_request();
}
示例9: setUp
public function setUp()
{
parent::setUp();
$this->config = new \phpbb\config\config(array());
$this->db = new \phpbb\db\driver\sqlite();
$this->db_tools = new \phpbb\db\tools($this->db);
$this->table_prefix = 'phpbb_';
}
示例10: setUp
public function setUp()
{
parent::setUp();
global $phpbb_container;
$phpbb_container = new phpbb_mock_container_builder();
$phpbb_container->set('auth.provider_collection', array('auth.provider.acp_board_valid' => new phpbb\auth\provider\acp\board_valid(), 'auth.provider.acp_board_invalid' => new phpbb\auth\provider\acp\board_invalid()));
$this->acp_board = new acp_board();
}
示例11: setUp
public function setUp()
{
global $cache, $user, $phpbb_dispatcher;
parent::setUp();
$phpbb_dispatcher = new phpbb_mock_event_dispatcher();
$config = new \phpbb\config\config(array());
set_config(null, null, null, $config);
}
示例12: tearDown
protected function tearDown()
{
parent::tearDown();
if (self::$db instanceof \phpbb\db\driver\driver_interface) {
// Close the database connections again this test
self::$db->sql_close();
}
}
示例13: setUp
public function setUp()
{
parent::setUp();
global $phpbb_root_path, $phpEx;
include_once $phpbb_root_path . 'includes/functions.' . $phpEx;
$this->cache = $this->getMockBuilder('\\phpbb\\cache\\service')->disableOriginalConstructor()->getMock();
$this->version_helper = new \phpbb\version_helper($this->cache, new \phpbb\config\config(array('version' => '3.1.0')), new \phpbb\file_downloader(), new \phpbb\user('\\phpbb\\datetime'));
}
示例14: setUp
public function setUp()
{
parent::setUp();
$user = new \phpbb\user('\\phpbb\\datetime');
$user->add_lang('ucp');
$request = $this->getMock('\\phpbb\\request\\request');
$template = $this->getMock('\\phpbb\\template\\template');
$this->field = new \phpbb\profilefields\type\type_googleplus($request, $template, $user);
}
示例15: setUp
public function setUp()
{
global $cache, $user, $phpbb_dispatcher;
parent::setUp();
$cache = new phpbb_mock_cache();
$user = new phpbb_mock_user();
$user->optionset('viewcensors', false);
$phpbb_dispatcher = new phpbb_mock_event_dispatcher();
}