]> _ Git - couzy.git/blob
316d067fdad355508c1ffc894acd76280fd7e657
[couzy.git] /
1 <?php
2 // disable xdebug backtrace
3 if ( function_exists( 'xdebug_disable' ) ) {
4         xdebug_disable();
5 }
6
7 echo 'Welcome to the License Manager Test Suite' . PHP_EOL;
8 echo 'Version: 1.0' . PHP_EOL . PHP_EOL;
9
10 if( false !== getenv( 'WP_DEVELOP_DIR' ) ) {
11         require getenv( 'WP_DEVELOP_DIR' ) . 'tests/phpunit/includes/bootstrap.php';
12 } else {
13         require '../../../../tests/phpunit/includes/bootstrap.php';
14 }
15 // include unit test base class
16 require_once dirname( __FILE__ ) . '/framework/class-yst-license-manager-unit-test-case.php';