1
0
mirror of https://github.com/owncloudarchive/contacts.git synced 2025-02-09 03:54:18 +01:00

20 lines
588 B
PHP
Raw Normal View History

2013-08-20 03:32:36 +02:00
<?php
global $RUNTIME_NOAPPS;
$RUNTIME_NOAPPS = true;
if (!defined('PHPUNIT_RUN')) {
2013-09-16 21:29:33 +02:00
define('PHPUNIT_RUN', 1);
}
2015-05-04 00:36:13 +02:00
require_once __DIR__.'/../../../lib/base.php';
2013-08-20 03:32:36 +02:00
if(!class_exists('PHPUnit_Framework_TestCase')) {
require_once('PHPUnit/Autoload.php');
}
OC_Hook::clear();
OC_Log::$enabled = false;
OCP\Util::connectHook('OCA\Contacts', 'pre_deleteContact', '\OCA\Contacts\Hooks', 'contactDeletion');
Sabre\VObject\Component\VCard::$componentMap['VCARD'] = '\OCA\Contacts\VObject\VCard';
Sabre\VObject\Component\VCard::$propertyMap['CATEGORIES'] = '\OCA\Contacts\VObject\GroupProperty';