TestTransWrapper.php 460 B

123456789101112131415161718192021222324
  1. <?php
  2. use PHPUnit\Framework\TestCase;
  3. define('APP_ID', 'test');
  4. define('BASE_ROOT_PATH', str_replace('/test', '', dirname(__FILE__)));
  5. require_once(BASE_ROOT_PATH . '/global.php');
  6. require_once(BASE_CORE_PATH . '/lrlz.php');
  7. require_once(BASE_ROOT_PATH . '/fooder.php');
  8. class TestTransWrapper extends TestCase
  9. {
  10. public static function setUpBeforeClass() : void
  11. {
  12. Base::run_util();
  13. }
  14. public function testRollback()
  15. {
  16. }
  17. }