@@ -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