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


PHP Test\TestCase類代碼示例

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


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

示例1: tearDown

 public function tearDown()
 {
     unset($this->backend);
     unset($this->ab);
     Utils\Properties::purgeIndexes($this->contactIds);
     parent::tearDown();
 }
開發者ID:gvde,項目名稱:contacts-8,代碼行數:7,代碼來源:addressbookproviderTest.php

示例2: tearDownAfterClass

 public static function tearDownAfterClass()
 {
     \OC_User::deleteUser(self::TEST_ENCRYPTION_MIGRATION_USER1);
     \OC_User::deleteUser(self::TEST_ENCRYPTION_MIGRATION_USER2);
     \OC_User::deleteUser(self::TEST_ENCRYPTION_MIGRATION_USER3);
     parent::tearDownAfterClass();
 }
開發者ID:0x17de,項目名稱:core,代碼行數:7,代碼來源:MigrationTest.php

示例3: setUp

 public function setUp()
 {
     parent::setUp();
     $this->session = $this->getMockBuilder('\\OCP\\ISession')->disableOriginalConstructor()->getMock();
     $this->userSession = $this->getMockBuilder('\\OCP\\IUserSession')->disableOriginalConstructor()->getMock();
     $this->auth = new \OCA\DAV\Connector\Sabre\Auth($this->session, $this->userSession);
 }
開發者ID:TechArea,項目名稱:core,代碼行數:7,代碼來源:auth.php

示例4: setUp

 protected function setUp()
 {
     parent::setUp();
     if (!function_exists('idn_to_ascii')) {
         $this->markTestSkipped('The intl extension is not available.');
     }
 }
開發者ID:riso,項目名稱:owncloud-core,代碼行數:7,代碼來源:mail.php

示例5: setUp

 protected function setUp()
 {
     parent::setUp();
     $this->tagManager = $this->getMock('\\OCP\\SystemTag\\ISystemTagManager');
     $this->tagMapper = $this->getMock('\\OCP\\SystemTag\\ISystemTagObjectMapper');
     $this->node = new \OCA\DAV\SystemTag\SystemTagsObjectMappingCollection(111, 'files', $this->tagManager, $this->tagMapper);
 }
開發者ID:gmurayama,項目名稱:core,代碼行數:7,代碼來源:systemtagsobjectmappingcollection.php

示例6: setUp

 public function setUp()
 {
     $this->userManager = $this->getMockBuilder('\\OCP\\IUserManager')->disableOriginalConstructor()->getMock();
     $this->config = $this->getMockBuilder('\\OCP\\IConfig')->disableOriginalConstructor()->getMock();
     $this->connector = new \OCA\DAV\Connector\Sabre\Principal($this->config, $this->userManager);
     parent::setUp();
 }
開發者ID:evanjt,項目名稱:core,代碼行數:7,代碼來源:principal.php

示例7: tearDown

 protected function tearDown()
 {
     $conn = \OC_DB::getConnection();
     $conn->executeQuery('DELETE FROM `*PREFIX*vcategory_to_object`');
     $conn->executeQuery('DELETE FROM `*PREFIX*vcategory`');
     parent::tearDown();
 }
開發者ID:heldernl,項目名稱:owncloud8-extended,代碼行數:7,代碼來源:tags.php

示例8: tearDown

 protected function tearDown()
 {
     if ($this->instance) {
         $this->instance->clear();
     }
     parent::tearDown();
 }
開發者ID:rchicoli,項目名稱:owncloud-core,代碼行數:7,代碼來源:TestCache.php

示例9: setUp

 protected function setUp()
 {
     parent::setUp();
     self::$logs = array();
     $this->config = $this->getMockBuilder('\\OC\\SystemConfig')->disableOriginalConstructor()->getMock();
     $this->logger = new Log('Test\\Logger', $this->config);
 }
開發者ID:julakali,項目名稱:core,代碼行數:7,代碼來源:logger.php

示例10: setUp

	public function setUp() {
		parent::setUp();
		$this->view = $this->getMockBuilder('OC\Files\View')
			->disableOriginalConstructor()
			->getMock();

		$this->userManager = $this->getMockBuilder('OC\User\Manager')
			->disableOriginalConstructor()
			->getMock();

		$this->groupManager = $this->getMockBuilder('OC\Group\Manager')
			->disableOriginalConstructor()
			->getMock();

		$this->config = $this->getMockBuilder('OCP\IConfig')
			->disableOriginalConstructor()
			->getMock();

		$this->util = new Util(
			$this->view,
			$this->userManager,
			$this->groupManager,
			$this->config
		);

	}
開發者ID:ninjasilicon,項目名稱:core,代碼行數:26,代碼來源:utiltest.php

示例11: setUp

 public function setUp()
 {
     parent::setUp();
     $this->request = $this->getMockBuilder('\\OCP\\IRequest')->disableOriginalConstructor()->getMock();
     $this->externalManager = $this->getMockBuilder('\\OCA\\Files_Sharing\\External\\Manager')->disableOriginalConstructor()->getMock();
     $this->clientService = $this->getMockBuilder('\\OCP\\Http\\Client\\IClientService')->disableOriginalConstructor()->getMock();
 }
開發者ID:GitHubUser4234,項目名稱:core,代碼行數:7,代碼來源:ExternalShareControllerTest.php

示例12: setUp

 protected function setUp()
 {
     parent::setUp();
     $this->tagManager = $this->getMock('\\OCP\\SystemTag\\ISystemTagManager');
     $this->tagMapper = $this->getMock('\\OCP\\SystemTag\\ISystemTagObjectMapper');
     $this->user = $this->getMock('\\OCP\\IUser');
 }
開發者ID:rchicoli,項目名稱:owncloud-core,代碼行數:7,代碼來源:SystemTagsObjectMappingCollectionTest.php

示例13: setUp

 protected function setUp()
 {
     parent::setUp();
     $this->user = new DummyUser('foo', \OC::$server->getTempManager()->getTemporaryFolder());
     $this->storage = new \OC\Files\Storage\Home(array('user' => $this->user));
     $this->cache = $this->storage->getCache();
 }
開發者ID:rchicoli,項目名稱:owncloud-core,代碼行數:7,代碼來源:HomeCacheTest.php

示例14: setUp

	public function setUp() {
		parent::setUp();

		$this->request = $this->getMockBuilder('\OCP\IRequest')
			->disableOriginalConstructor()->getMock();
		$this->config = $this->getMockBuilder('\OCP\IConfig')
			->disableOriginalConstructor()->getMock();
		$this->config = $this->getMockBuilder('\OCP\IConfig')
			->disableOriginalConstructor()->getMock();
		$this->clientService = $this->getMockBuilder('\OCP\Http\Client\IClientService')
			->disableOriginalConstructor()->getMock();
		$this->util = $this->getMockBuilder('\OC_Util')
			->disableOriginalConstructor()->getMock();
		$this->urlGenerator = $this->getMockBuilder('\OCP\IURLGenerator')
			->disableOriginalConstructor()->getMock();

		$this->checkSetupController = new CheckSetupController(
			'settings',
			$this->request,
			$this->config,
			$this->clientService,
			$this->urlGenerator,
			$this->util
		);
	}
開發者ID:ninjasilicon,項目名稱:core,代碼行數:25,代碼來源:CheckSetupControllerTest.php

示例15: setUp

 protected function setUp()
 {
     parent::setUp();
     $connection = \OC::$server->getDatabaseConnection();
     $this->expressionBuilder = new ExpressionBuilder($connection);
     $this->doctrineExpressionBuilder = new DoctrineExpressionBuilder($connection);
 }
開發者ID:0x17de,項目名稱:core,代碼行數:7,代碼來源:expressionbuildertest.php


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