Skip to content
This repository was archived by the owner on Mar 23, 2024. It is now read-only.

Commit 00788d4

Browse files
committed
:octocat:
1 parent 0c77028 commit 00788d4

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

tests/Storage/StorageTestAbstract.php

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,6 @@ protected function setUp(){
3131
$this->token = new AccessToken(['accessToken' => 'foobar']);
3232
}
3333

34-
/**
35-
* @runInSeparateProcess
36-
*/
3734
public function testTokenStorage(){
3835

3936
$this->storage->storeAccessToken('testService', $this->token);
@@ -51,9 +48,6 @@ public function testTokenStorage(){
5148
$this->assertFalse($this->storage->hasAccessToken('testService'));
5249
}
5350

54-
/**
55-
* @runInSeparateProcess
56-
*/
5751
public function testClearAllAccessTokens(){
5852
$this->storage->clearAllAccessTokens();
5953

@@ -77,7 +71,6 @@ public function testClearAllAccessTokens(){
7771
/**
7872
* @expectedException \chillerlan\OAuth\Storage\OAuthStorageException
7973
* @expectedExceptionMessage state not found
80-
* @runInSeparateProcess
8174
*/
8275
public function testRetrieveCSRFStateNotFoundException(){
8376
$this->storage->getCSRFState('LOLNOPE');
@@ -86,15 +79,11 @@ public function testRetrieveCSRFStateNotFoundException(){
8679
/**
8780
* @expectedException \chillerlan\OAuth\Storage\OAuthStorageException
8881
* @expectedExceptionMessage token not found
89-
* @runInSeparateProcess
9082
*/
9183
public function testRetrieveAccessTokenNotFoundException(){
9284
$this->storage->getAccessToken('LOLNOPE');
9385
}
9486

95-
/**
96-
* @runInSeparateProcess
97-
*/
9887
public function testToStorage(){
9988
$a = $this->storage->toStorage($this->token);
10089
$b = $this->storage->fromStorage($a);

0 commit comments

Comments
 (0)