File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1414use OCA \Libresign \Service \IdentifyMethodService ;
1515use OCA \Libresign \Service \SequentialSigningService ;
1616use OCA \Libresign \Tests \Unit \TestCase ;
17- use OCP \IAppConfig ;
1817use PHPUnit \Framework \Attributes \DataProvider ;
1918use PHPUnit \Framework \MockObject \MockObject ;
2019
2120final class SequentialSigningServiceTest extends TestCase {
22- private IAppConfig &MockObject $ appConfig ;
2321 private SignRequestMapper &MockObject $ signRequestMapper ;
2422 private IdentifyMethodService &MockObject $ identifyMethodService ;
2523 private SequentialSigningService $ service ;
2624
2725 public function setUp (): void {
2826 parent ::setUp ();
29- $ this ->appConfig = $ this ->createMock (IAppConfig::class);
3027 $ this ->signRequestMapper = $ this ->createMock (SignRequestMapper::class);
3128 $ this ->identifyMethodService = $ this ->createMock (IdentifyMethodService::class);
3229
3330 $ this ->service = new SequentialSigningService (
34- $ this ->appConfig ,
3531 $ this ->signRequestMapper ,
3632 $ this ->identifyMethodService
3733 );
You can’t perform that action at this time.
0 commit comments