本文整理汇总了PHP中Test\TestCase::setUp方法的典型用法代码示例。如果您正苦于以下问题:PHP TestCase::setUp方法的具体用法?PHP TestCase::setUp怎么用?PHP TestCase::setUp使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Test\TestCase
的用法示例。
在下文中一共展示了TestCase::setUp方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: 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');
}
示例2: setUp
protected function setUp() {
parent::setUp();
$this->connection = \OC::$server->getDatabaseConnection();
$this->repair = new \OC\Repair\CleanTags($this->connection);
$this->cleanUpTables();
}
示例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);
}
示例4: setUp
protected function setUp()
{
parent::setUp();
if (!function_exists('idn_to_ascii')) {
$this->markTestSkipped('The intl extension is not available.');
}
}
示例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);
}
示例6: setUp
protected function setUp()
{
parent::setUp();
$this->appstore = OC_Config::getValue('appstoreenabled', true);
OC_Config::setValue('appstoreenabled', true);
OC_Installer::removeApp(self::$appid);
}
示例7: setUp
protected function setUp()
{
parent::setUp();
$this->tag = new SystemTag(1, 'Test', true, false);
$this->tagManager = $this->getMock('\\OCP\\SystemTag\\ISystemTagManager');
$this->node = new \OCA\DAV\SystemTag\SystemTagNode($this->tag, $this->tagManager);
}
示例8: setUp
public function setUp()
{
parent::setUp();
$this->urlGenerator = $this->getMock('OCP\\IURLGenerator');
$this->il10n = $this->getMock('OCP\\IL10N');
$this->addressHandler = new AddressHandler($this->urlGenerator, $this->il10n);
}
示例9: 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->config = $this->getMockBuilder('OCP\\IConfig')->disableOriginalConstructor()->getMock();
}
示例10: 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();
}
示例11: 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);
}
示例12: setUp
protected function setUp()
{
parent::setUp();
// remember files_encryption state
$this->stateFilesEncryption = \OC_App::isEnabled('files_encryption');
// we want to tests with the encryption app disabled
\OC_App::disable('files_encryption');
$this->storage = new \OC\Files\Storage\Temporary(array());
$textData = "dummy file data\n";
$imgData = file_get_contents(\OC::$SERVERROOT . '/core/img/logo.png');
$this->storage->mkdir('folder');
$this->storage->file_put_contents('foo.txt', $textData);
$this->storage->file_put_contents('foo.png', $imgData);
$this->storage->file_put_contents('folder/bar.txt', $textData);
$this->storage->file_put_contents('folder/bar2.txt', $textData);
$this->scanner = $this->storage->getScanner();
$this->scanner->scan('');
$this->cache = $this->storage->getCache();
$this->originalStorage = Filesystem::getStorage('/');
Filesystem::tearDown();
if (!self::$user) {
self::$user = $this->getUniqueID();
}
\OC_User::createUser(self::$user, 'password');
\OC_User::setUserId(self::$user);
Filesystem::init(self::$user, '/' . self::$user . '/files');
Filesystem::clearMounts();
Filesystem::mount($this->storage, array(), '/' . self::$user . '/files');
\OC_Hook::clear('OC_Filesystem');
}
示例13: setUp
protected function setUp()
{
parent::setUp();
$this->originalStorage = \OC\Files\Filesystem::getStorage('/');
\OC_User::setUserId('');
\OC\Files\Filesystem::clearMounts();
}
示例14: 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
);
}
示例15: setUp
public function setUp()
{
parent::setUp();
$this->config = $this->getMock('\\OCP\\IConfig');
$this->userManager = $this->getMock('\\OCP\\IUserManager');
$this->scanFiles = $this->getMockBuilder('\\OCA\\Files\\BackgroundJob\\ScanFiles')->setConstructorArgs([$this->config, $this->userManager])->setMethods(['runScanner'])->getMock();
}