13 lines
332 B
PHP
13 lines
332 B
PHP
<?php
|
|
/**
|
|
* This array contains the names of the standalone functions that will become mockable via FunctionsMockerHack
|
|
* when running unit tests. If you need to mock a function that isn't in the list, simply add it.
|
|
* Please keep it sorted alphabetically.
|
|
*
|
|
* @package WooCommerce Tests
|
|
*/
|
|
|
|
return array(
|
|
// 'get_option'
|
|
);
|