You've already forked wc-bootstrap
15 lines
432 B
PHP
15 lines
432 B
PHP
|
|
<?php
|
||
|
|
/**
|
||
|
|
* PHPUnit bootstrap file.
|
||
|
|
*
|
||
|
|
* Loads Composer autoloader and class stubs required
|
||
|
|
* for unit testing outside of WordPress/WooCommerce.
|
||
|
|
*/
|
||
|
|
|
||
|
|
// Composer autoloader (loads WcBootstrap\* classes + Brain\Monkey).
|
||
|
|
require_once dirname(__DIR__) . '/vendor/autoload.php';
|
||
|
|
|
||
|
|
// Class stubs (WordPress / WooCommerce / parent theme).
|
||
|
|
require_once __DIR__ . '/Stubs/TwigService.php';
|
||
|
|
require_once __DIR__ . '/Stubs/WcProduct.php';
|