@@ -33,8 +33,8 @@ abstract class OAuthProviderTestAbstract extends TestCase{
33
33
protected bool $ is_ci ;
34
34
35
35
// PSR interfaces
36
- protected ClientInterface $ http ;
37
- protected LoggerInterface $ logger ;
36
+ protected ClientInterface $ http ;
37
+ protected LoggerInterface $ logger ;
38
38
39
39
// OAuth related properties
40
40
protected OAuthOptions |SettingsContainerInterface $ options ;
@@ -58,10 +58,10 @@ protected function setUp():void{
58
58
// init provider
59
59
$ this ->options = $ this ->initOptions ();
60
60
$ this ->storage = $ this ->initStorage ($ this ->options );
61
- $ this ->http = $ this ->initHttp ($ this ->options , $ this ->logger , $ this :: TEST_RESPONSES ); // PSR-18 HTTP client
61
+ $ this ->http = $ this ->initHttp ($ this ->options , $ this ->logger ); // PSR-18 HTTP client
62
62
$ this ->provider = $ this ->initProvider ($ this ->getProviderFQCN ());
63
63
64
- $ this ->initTestProperties ($ this :: TEST_PROPERTIES );
64
+ $ this ->initTestProperties ();
65
65
}
66
66
67
67
/**
@@ -97,8 +97,8 @@ protected function initStorage(SettingsContainerInterface $options):OAuthStorage
97
97
return new MemoryStorage ($ options );
98
98
}
99
99
100
- protected function initHttp (SettingsContainerInterface $ options , LoggerInterface $ logger, array $ responses ):ClientInterface {
101
- return new ProviderTestHttpClient ($ logger , $ responses );
100
+ protected function initHttp (SettingsContainerInterface $ options , LoggerInterface $ logger ):ClientInterface {
101
+ return new ProviderTestHttpClient ($ logger , $ this :: TEST_RESPONSES );
102
102
}
103
103
104
104
protected function initProvider (string $ FQCN ):OAuthInterface |OAuth1Interface |OAuth2Interface {
@@ -117,9 +117,9 @@ protected function initProvider(string $FQCN):OAuthInterface|OAuth1Interface|OAu
117
117
return $ this ->reflection ->newInstanceArgs ($ args );
118
118
}
119
119
120
- protected function initTestProperties (array $ properties ):void {
121
- foreach ($ properties as $ property => $ value ){
122
- $ this ->reflection -> getProperty ($ property)-> setValue ( $ this -> provider , $ value );
120
+ protected function initTestProperties ():void {
121
+ foreach ($ this :: TEST_PROPERTIES as $ property => $ value ){
122
+ $ this ->setReflectionProperty ($ property , $ value );
123
123
}
124
124
}
125
125
0 commit comments