TestRoomAccess.php 904 B

1234567891011121314151617181920212223242526
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: stanley-king
  5. * Date: 2017/12/23
  6. * Time: 下午2:19
  7. */
  8. define('BASE_ROOT_PATH',str_replace('/test','',dirname(__FILE__)));
  9. require_once(BASE_ROOT_PATH . '/fooder.php');
  10. require_once(BASE_ROOT_PATH . '/helper/event_looper.php');
  11. require_once(BASE_ROOT_PATH . '/helper/room/factory_processor.php');
  12. require_once(BASE_ROOT_PATH . '/helper/room/proto_type.php');
  13. require_once(BASE_ROOT_PATH . '/helper/room/room_info.php');
  14. require_once(BASE_ROOT_PATH . '/helper/room/factory.php');
  15. require_once(BASE_ROOT_PATH . '/helper/room/croom.php');
  16. require_once(BASE_ROOT_PATH . '/helper/room/bargain.php');
  17. require_once(BASE_ROOT_PATH . '/helper/room/chat.php');
  18. require_once(BASE_ROOT_PATH . '/helper/room/room_client.php');
  19. class TestRoomAccess extends PHPUnit_Framework_TestCase
  20. {
  21. public static function setUpBeforeClass()
  22. {
  23. Base::run_util();
  24. }
  25. }