TestRoomAccess.php 843 B

12345678910111213141516171819202122232425
  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/factory.php');
  14. require_once(BASE_ROOT_PATH . '/helper/room/croom.php');
  15. require_once(BASE_ROOT_PATH . '/helper/room/bargain.php');
  16. require_once(BASE_ROOT_PATH . '/helper/room/chat.php');
  17. require_once(BASE_ROOT_PATH . '/helper/room/room_client.php');
  18. class TestRoomAccess extends PHPUnit_Framework_TestCase
  19. {
  20. public static function setUpBeforeClass()
  21. {
  22. Base::run_util();
  23. }
  24. }