public function test getKeyPair returns the stored KeyPair()
 {
     $dummyKeyPair = $this->prophesize(KeyPair::class)->reveal();
     $this->mockStorage->load()->shouldBeCalled()->willReturn($dummyKeyPair);
     $response = $this->service->getKeyPair();
     $this->assertSame($dummyKeyPair, $response);
 }