1<?php
2
3if (extension_loaded('xdebug')) {
4    xdebug_disable();
5}
6
7    throw new Exception(
8        'PHPUnit suppresses exceptions thrown outside of test case function'
9    );
10