cart = $this->createMock(CartInterface::class); $this->config = $this->createMock(Config::class); $this->provider = new ConfigProvider($this->config, $this->cart); } public function testProviderRetrievesValues() { $this->cart->method('getStoreId') ->willReturn('123'); $this->config->method('getClientKey') ->with('123') ->willReturn('foo'); $this->config->method('getLoginId') ->with('123') ->willReturn('bar'); $this->config->method('getEnvironment') ->with('123') ->willReturn('baz'); $this->config->method('isCvvEnabled') ->with('123') ->willReturn(false); $expected = [ 'payment' => [ Config::METHOD => [ 'clientKey' => 'foo', 'apiLoginID' => 'bar', 'environment' => 'baz', 'useCvv' => false, ] ] ]; $this->assertEquals($expected, $this->provider->getConfig()); } }