# edit-flow/0.8.2/tests/bootstrap.php

Edit Flow, version 0.8.2. 15 lines.

- Page: https://pluginprobe.com/plugins/edit-flow/0.8.2/code/tests/bootstrap.php
- Raw: https://pluginprobe.com/plugins/edit-flow/0.8.2/raw/tests/bootstrap.php
- Modified: 2016-05-12T15:23:42+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/edit-flow/0.8.2/code/tests/bootstrap.php#L10-L20`.

```php
<?php

$_tests_dir = '/tmp/wordpress/tests/phpunit';

require_once $_tests_dir . '/includes/functions.php';

function _manually_load_plugin() {
	require dirname( __FILE__ ) . '/../edit_flow.php';
}
tests_add_filter( 'muplugins_loaded', '_manually_load_plugin' );

require $_tests_dir . '/includes/bootstrap.php';

require dirname( __FILE__ ) . '/testcase-edit-flow-ajax.php';

```
