Skip to content
Snippets Groups Projects
Commit df36eed9 authored by Demian Katz's avatar Demian Katz Committed by Robert Lange
Browse files

Fix module-level PHPUnit configurations.

parent d5ea7b4f
No related merge requests found
<?xml version="1.0" encoding="utf-8"?>
<phpunit bootstrap="../../../VuFind/tests/bootstrap.php">
<testsuites>
<testsuite name="VuFindAdmin">
<directory>src</directory>
</testsuite>
</testsuites>
</phpunit>
<?xml version="1.0" encoding="utf-8"?>
<phpunit bootstrap="../../../VuFind/tests/bootstrap.php">
<testsuites>
<testsuite name="VuFindApi">
<directory>src</directory>
</testsuite>
</testsuites>
</phpunit>
<?php
/**
* Search subsystem PHPUnit bootstrap.
*
* @author David Maus <maus@hab.de>
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License
* @copyright Copyright (C) Villanova University 2011
*/
require_once'Zend/Loader/AutoloaderFactory.php';
\Zend\Loader\AutoloaderFactory::factory(
[
'Zend\Loader\StandardAutoloader' => [
'namespaces' => [
'VuFindConsole' => realpath(__DIR__ . '/../../src/VuFindConsole'),
'VuFindTest' => realpath(__DIR__ . '/src/VuFindTest'),
],
'autoregister_zf' => true
]
]
);
<?xml version="1.0" encoding="utf-8"?>
<phpunit bootstrap="bootstrap.php"
strict="true">
<phpunit bootstrap="../../../VuFind/tests/bootstrap.php">
<testsuites>
<testsuite name="VuFindConsole">
<directory>src</directory>
</testsuite>
</testsuites>
<php>
<includePath>../../../../vendor/zendframework/zendframework/library</includePath>
</php>
</phpunit>
<?xml version="1.0" encoding="utf-8"?>
<phpunit bootstrap="../../../VuFind/tests/bootstrap.php">
<testsuites>
<testsuite name="VuFindDevTools">
<directory>src</directory>
</testsuite>
</testsuites>
</phpunit>
<?php
/**
* Search subsystem PHPUnit bootstrap.
*
* @author David Maus <maus@hab.de>
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License
* @copyright Copyright (C) Villanova University 2011
*/
require_once'Zend/Loader/AutoloaderFactory.php';
\Zend\Loader\AutoloaderFactory::factory(
[
'Zend\Loader\StandardAutoloader' => [
'namespaces' => [
'VuFindSearch' => realpath(__DIR__ . '/../../src/VuFindSearch'),
'VuFindTest' => realpath(__DIR__ . '/src/VuFindTest'),
],
'autoregister_zf' => true
]
]
);
define('PHPUNIT_SEARCH_FIXTURES', realpath(__DIR__ . '/fixtures'));
<?xml version="1.0" encoding="utf-8"?>
<phpunit bootstrap="bootstrap.php"
strict="true">
<phpunit bootstrap="../../../VuFind/tests/bootstrap.php">
<testsuites>
<testsuite name="VuFindSearch">
<directory>src</directory>
</testsuite>
</testsuites>
<php>
<includePath>../../../../vendor/zendframework/zendframework/library</includePath>
</php>
</phpunit>
<?php
/**
* Search subsystem PHPUnit bootstrap.
*
* @author David Maus <maus@hab.de>
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License
* @copyright Copyright (C) Villanova University 2011
*/
require_once 'Zend/Loader/AutoloaderFactory.php';
\Zend\Loader\AutoloaderFactory::factory(
[
'Zend\Loader\StandardAutoloader' => [
'namespaces' => [
'VuFindTheme' => realpath(__DIR__ . '/../../src/VuFindTheme'),
'VuFindTest' => realpath(__DIR__ . '/src/VuFindTest'),
],
'autoregister_zf' => true
]
]
);
<?xml version="1.0" encoding="utf-8"?>
<phpunit bootstrap="bootstrap.php"
strict="true">
<phpunit bootstrap="../../../VuFind/tests/bootstrap.php">
<testsuites>
<testsuite name="VuFindTheme">
<directory>src</directory>
</testsuite>
</testsuites>
<php>
<includePath>../../../../vendor/zendframework/zendframework/library</includePath>
</php>
</phpunit>
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment