コード例 #1
0
 /**
  * Provide table class and create table
  */
 public static function setUpBeforeClass()
 {
     static::$_table = \Library\Application::getService(static::_getClass());
     static::$_table->setSchema();
     parent::setUpBeforeClass();
 }
コード例 #2
0
ファイル: AbstractTest.php プロジェクト: hschletz/braintacle
 /**
  * Provide table class and create table
  */
 public static function setUpBeforeClass()
 {
     static::$_table = static::$serviceManager->get(static::_getClass());
     static::$_table->setSchema(true);
     parent::setUpBeforeClass();
 }