コード例 #1
0
ファイル: UserTest.php プロジェクト: tvpsoft/laravel-kinvey
 /**
  * Tear down the test environment.
  *
  * @return array
  */
 public function tearDown()
 {
     $user = User::withTrashed()->where('_id', $this->testUser->_id)->first()->forceDelete();
     $this->testUser = array();
 }
コード例 #2
0
ファイル: AuthTest.php プロジェクト: tvpsoft/laravel-kinvey
 /**
  * Tear down the test environment.
  *
  * @return array
  */
 public function tearDown()
 {
     Kinvey::setAuthMode('admin');
     $user = User::withTrashed()->where('_id', $this->testUser->_id)->first()->forceDelete();
     Kinvey::setAuthMode('app');
 }