2017-10-20 14:30:04 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* PHPUnit bootstrap file
|
|
|
|
*
|
|
|
|
* @package Test_Tainacan
|
|
|
|
*/
|
2017-11-10 21:08:12 +00:00
|
|
|
$bootstrap_cfg = require('bootstrap-config.php');
|
|
|
|
|
2017-10-20 14:30:04 +00:00
|
|
|
$_tests_dir = getenv( 'WP_TESTS_DIR' );
|
|
|
|
if ( ! $_tests_dir ) {
|
2017-11-10 21:08:12 +00:00
|
|
|
$_tests_dir = $bootstrap_cfg['tests_dir'];
|
2017-10-20 14:30:04 +00:00
|
|
|
}
|
2017-11-29 19:11:30 +00:00
|
|
|
|
2017-12-03 20:33:16 +00:00
|
|
|
if (isset($bootstrap_cfg['tests_url'])) {
|
|
|
|
define( 'TAINACAN_TESTS_URL', $bootstrap_cfg['tests_url'] );
|
|
|
|
}
|
2017-11-29 19:11:30 +00:00
|
|
|
|
2017-10-20 14:30:04 +00:00
|
|
|
// Give access to tests_add_filter() function.
|
|
|
|
require_once $_tests_dir . '/includes/functions.php';
|
|
|
|
/**
|
|
|
|
* Manually load the plugin being tested.
|
|
|
|
*/
|
|
|
|
function _manually_load_plugin() {
|
2017-11-22 11:36:24 +00:00
|
|
|
require dirname( dirname( __FILE__ ) ) . '/src/tainacan.php';
|
2017-10-20 14:30:04 +00:00
|
|
|
}
|
|
|
|
tests_add_filter( 'muplugins_loaded', '_manually_load_plugin' );
|
2017-12-03 20:33:16 +00:00
|
|
|
|
2017-10-20 14:30:04 +00:00
|
|
|
// Start up the WP testing environment.
|
|
|
|
require $_tests_dir . '/includes/bootstrap.php';
|
2017-12-03 20:33:16 +00:00
|
|
|
|
|
|
|
require_once(__DIR__ . '/factories/class-tainacan-entity-factory.php');
|
|
|
|
require_once(__DIR__ . '/tainacan-unit-test-case.php');
|
|
|
|
|