當前位置: 首頁>>代碼示例>>PHP>>正文


PHP TestCaseDatabase類代碼示例

本文整理匯總了PHP中TestCaseDatabase的典型用法代碼示例。如果您正苦於以下問題:PHP TestCaseDatabase類的具體用法?PHP TestCaseDatabase怎麽用?PHP TestCaseDatabase使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了TestCaseDatabase類的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: setup

 /**
  * Setup for testing.
  *
  * @return  void
  *
  * @since   3.6.2
  */
 public function setup()
 {
     JFactory::$application = $this->getMockCmsApp();
     JFactory::$session = $this->getMockSession();
     // force the cloak JS inline so that we can unit test it easier than messing with script head in document
     JFactory::getApplication()->input->server->set('HTTP_X_REQUESTED_WITH', 'xmlhttprequest');
     /**
      * Create a mock dispatcher instance
      *
      * @var $dispatcher Mock_JEventDispatcher_f5646d4b e.g
      */
     $dispatcher = TestCaseDatabase::getMockDispatcher();
     $plugin = array('name' => 'emailcloak', 'type' => 'Content', 'params' => new \JRegistry());
     $this->class = new PlgContentEmailcloak($dispatcher, $plugin);
 }
開發者ID:joomla-projects,項目名稱:media-manager-improvement,代碼行數:22,代碼來源:PlgContentEmailcloakTest.php

示例2: tearDown

 /**
  * Overrides the parent tearDown method.
  *
  * @return  void
  *
  * @see     PHPUnit_Framework_TestCase::tearDown()
  */
 protected function tearDown()
 {
     // Reset the filter instances.
     TestReflection::setValue('JFilterInput', 'instances', array());
     $this->restoreFactoryState();
     parent::tearDown();
 }
開發者ID:Rai-Ka,項目名稱:joomla-cms,代碼行數:14,代碼來源:JInstallerAdapterTest.php

示例3: tearDown

 /**
  * Tears down the fixture, for example, closes a network connection.
  * This method is called after a test is executed.
  *
  * @return  void
  *
  * @since   3.1
  */
 protected function tearDown()
 {
     $_SERVER = $this->backupServer;
     unset($this->backupServer);
     $this->restoreFactoryState();
     parent::tearDown();
 }
開發者ID:eshiol,項目名稱:joomla-cms,代碼行數:15,代碼來源:JHtmlBatchTest.php

示例4: setUp

 public function setUp()
 {
     parent::setUp();
     parent::setUpBeforeClass();
     $this->saveFactoryState();
     SHFactory::$config = null;
 }
開發者ID:philbertphotos,項目名稱:JMapMyLDAP,代碼行數:7,代碼來源:SHLdapHelperDBTest.php

示例5: setUp

 /**
  * Sets up the fixture.
  *
  * This method is called before a test is executed.
  *
  * @return  void
  */
 protected function setUp()
 {
     JFactory::$application = $this->getMockApplication();
     JFactory::$document = $this->getMockDocument();
     $this->_instance = new JDocumentRendererMessage(JFactory::getDocument());
     parent::setUp();
 }
開發者ID:sural98,項目名稱:joomla-cms,代碼行數:14,代碼來源:JDocumentRendererMessageTest.php

示例6: tearDown

 /**
  * Tears down the fixture, for example, closes a network connection.
  * This method is called after a test is executed.
  */
 protected function tearDown()
 {
     // Restore the factory state
     $this->restoreFactoryState();
     unset($this->object);
     parent::tearDown();
 }
開發者ID:Rai-Ka,項目名稱:joomla-cms,代碼行數:11,代碼來源:FinderIndexerTest.php

示例7: setUp

 /**
  * Sets up the fixture, for example, opens a network connection.
  * This method is called before a test is executed.
  *
  * @return  void
  *
  * @since   3.5
  */
 protected function setUp()
 {
     parent::setUp();
     $app = $this->getMockCmsApp();
     JFactory::$application = $app;
     $router = new JComponentRouterViewInspector($app, $app->getMenu());
     $router->set('name', 'content');
     $categories = new JComponentRouterViewconfiguration('categories');
     $categories->setKey('id');
     $router->registerView($categories);
     $category = new JComponentRouterViewconfiguration('category');
     $category->setKey('id')->setParent($categories)->setNestable()->addLayout('blog');
     $router->registerView($category);
     $article = new JComponentRouterViewconfiguration('article');
     $article->setKey('id')->setParent($category, 'catid');
     $router->registerView($article);
     $archive = new JComponentRouterViewconfiguration('archive');
     $router->registerView($archive);
     $featured = new JComponentRouterViewconfiguration('featured');
     $router->registerView($featured);
     $form = new JComponentRouterViewconfiguration('form');
     $router->registerView($form);
     $router->menu = new MockJComponentRouterRulesMenuMenuObject();
     $this->object = new JComponentRouterRulesMenuInspector($router);
 }
開發者ID:eshiol,項目名稱:joomla-cms,代碼行數:33,代碼來源:JComponentRouterRulesMenuTest.php

示例8: tearDown

 /**
  * Tears down the fixture, for example, closes a network connection.
  * This method is called after a test is executed.
  *
  * @return  void
  *
  * @since   3.0
  */
 protected function tearDown()
 {
     TestReflection::setValue('JComponentHelper', 'components', array());
     // Restore the state
     $this->restoreFactoryState();
     parent::tearDown();
 }
開發者ID:Rai-Ka,項目名稱:joomla-cms,代碼行數:15,代碼來源:JHelpTest.php

示例9: setUp

 /**
  * Sets up the fixture, for example, opens a network connection.
  * This method is called before a test is executed.
  *
  * @return  void
  *
  * @since   3.2
  */
 protected function setUp()
 {
     parent::setUp();
     $this->saveFactoryState();
     $this->object = new JHelper();
     JFactory::$application = $this->getMockCmsApp();
 }
開發者ID:SysBind,項目名稱:joomla-cms,代碼行數:15,代碼來源:JHelperTest.php

示例10: setUp

	/**
	 * Sets up dependencies for the test.
	 *
	 * @return  void
	 *
	 * @since   11.1
	 */
	protected function setUp()
	{
		parent::setUp();

		require_once JPATH_PLATFORM . '/joomla/form/fields/accesslevel.php';
		include_once dirname(__DIR__) . '/inspectors.php';
	}
開發者ID:realityking,項目名稱:joomla-platform,代碼行數:14,代碼來源:JFormFieldAccessLevelTest.php

示例11: tearDown

 /**
  * Overrides the parent tearDown method.
  *
  * @return  void
  *
  * @see     PHPUnit_Framework_TestCase::tearDown()
  * @since   3.6
  */
 protected function tearDown()
 {
     // Reset the dispatcher instance.
     TestReflection::setValue('JEventDispatcher', 'instance', null);
     $_SERVER = $this->backupServer;
     $this->restoreFactoryState();
     parent::tearDown();
 }
開發者ID:N6REJ,項目名稱:joomla-cms,代碼行數:16,代碼來源:JLanguageMultilangTest.php

示例12: setUp

 /**
  * Sets up the fixture, for example, opens a network connection.
  * This method is called before a test is executed.
  */
 protected function setUp()
 {
     parent::setUp();
     // Clear the static caches.
     JAccess::clearStatics();
     $this->object = new JAccess();
     // Make sure previous test files are cleaned up
     $this->_cleanupTestFiles();
     // Make some test files and folders
     mkdir(JPath::clean(JPATH_TESTS . '/tmp/access'), 0777, true);
 }
開發者ID:nprasath002,項目名稱:joomla-platform,代碼行數:15,代碼來源:JAccessTest.php

示例13: setUp

 /**
  * Sets up the fixture, for example, opens a network connection.
  * This method is called before a test is executed.
  *
  * @return  void
  *
  * @since   12.1
  */
 protected function setUp()
 {
     @(include_once JPATH_TESTS . '/config_sqlsrv.php');
     if (class_exists('JSqlSrvTestConfig')) {
         $config = new JSqlSrvTestConfig();
     } else {
         $this->markTestSkipped('There is no SQL Server test config file present.');
     }
     $this->object = JDatabase::getInstance(array('driver' => $config->dbtype, 'database' => $config->db, 'host' => $config->host, 'user' => $config->user, 'password' => $config->password));
     parent::setUp();
 }
開發者ID:rvsjoen,項目名稱:joomla-platform,代碼行數:19,代碼來源:JDatabaseSQLSrvTest.php

示例14: setUpBeforeClass

 /**
  * This method is called before the first test of this test class is run.
  *
  * @return  void
  *
  * @since   12.1
  */
 public static function setUpBeforeClass()
 {
     // We always want the default database test case to use an SQLite memory database.
     $options = array('driver' => 'sqlite', 'database' => ':memory:', 'prefix' => 'jos_');
     try {
         // Attempt to instantiate the driver.
         static::$driver = JDatabaseDriver::getInstance($options);
         // Create a new PDO instance for an SQLite memory database and load the test schema into it.
         $pdo = new PDO('sqlite::memory:');
         $pdo->exec(file_get_contents(JPATH_TESTS . '/schema/ddl.sql'));
         // Set the PDO instance to the driver using reflection whizbangery.
         TestReflection::setValue(static::$driver, 'connection', $pdo);
     } catch (RuntimeException $e) {
         static::$driver = null;
     }
     // If for some reason an exception object was returned set our database object to null.
     if (static::$driver instanceof Exception) {
         static::$driver = null;
     }
     // Setup the factory pointer for the driver and stash the old one.
     self::$_stash = JFactory::$database;
     JFactory::$database = static::$driver;
 }
開發者ID:Rai-Ka,項目名稱:joomla-cms,代碼行數:30,代碼來源:database.php

示例15: setUp

 /**
  * Sets up the fixture, for example, opens a network connection.
  * This method is called before a test is executed.
  *
  * @return  void
  *
  * @since   12.1
  */
 protected function setUp()
 {
     parent::setUp();
     $this->saveFactoryState();
 }
開發者ID:sural98,項目名稱:joomla-cms,代碼行數:13,代碼來源:JUserHelperTest.php


注:本文中的TestCaseDatabase類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。