1: <?php
2:
3: require __DIR__ . '/../Tester/bootstrap.php';
4:
5:
6: if (extension_loaded('xdebug')) {
7: Tester\CodeCoverage\Collector::start(__DIR__ . '/coverage.dat');
8: }
9:
10:
11: function test(\Closure $function)
12: {
13: $function();
14: }
15: