This repository was archived by the owner on Mar 23, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +39
-0
lines changed Expand file tree Collapse file tree 1 file changed +39
-0
lines changed Original file line number Diff line number Diff 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}
You can’t perform that action at this time.
0 commit comments