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

Commit 0c77028

Browse files
committed
:octocat: isolated tests cause coverage trouble on windows
1 parent eb5100d commit 0c77028

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed

tests/Storage/SessionStorageTest.php

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,43 @@ protected function setUp(){
2525
$this->storage = new SessionStorage;
2626
}
2727

28+
/**
29+
* @runInSeparateProcess
30+
*/
31+
public function testTokenStorage(){
32+
parent::testTokenStorage();
33+
}
34+
35+
/**
36+
* @runInSeparateProcess
37+
*/
38+
public function testClearAllAccessTokens(){
39+
parent::testClearAllAccessTokens();
40+
}
41+
42+
/**
43+
* @expectedException \chillerlan\OAuth\Storage\OAuthStorageException
44+
* @expectedExceptionMessage state not found
45+
* @runInSeparateProcess
46+
*/
47+
public function testRetrieveCSRFStateNotFoundException(){
48+
parent::testRetrieveCSRFStateNotFoundException();
49+
}
50+
51+
/**
52+
* @expectedException \chillerlan\OAuth\Storage\OAuthStorageException
53+
* @expectedExceptionMessage token not found
54+
* @runInSeparateProcess
55+
*/
56+
public function testRetrieveAccessTokenNotFoundException(){
57+
parent::testRetrieveAccessTokenNotFoundException();
58+
}
59+
60+
/**
61+
* @runInSeparateProcess
62+
*/
63+
public function testToStorage(){
64+
parent::testToStorage();
65+
}
66+
2867
}

0 commit comments

Comments
 (0)