File: //opt/plugins/add-admin-css/tests/bootstrap.php
<?php
/**
* PHPUnit bootstrap file
*
* @package Add_Admin_CSS
*/
ini_set( 'display_errors', 'on' );
error_reporting( E_ALL );
$_tests_dir = getenv( 'WP_TESTS_DIR' );
if ( ! $_tests_dir ) {
$_tests_dir = '/tmp/wordpress-tests-lib';
}
// Give access to tests_add_filter() function.
require_once $_tests_dir . '/tests/phpunit/includes/functions.php';
/**
* Manually load the plugin being tested.
*/
function _manually_load_plugin() {
require dirname( dirname( __FILE__ ) ) . '/add-admin-css.php';
}
tests_add_filter( 'muplugins_loaded', '_manually_load_plugin' );
// Start up the WP testing environment.
require $_tests_dir . '/tests/phpunit/includes/bootstrap.php';