spec\MGDigital\BusQue\Redis\Predis\MockingClientInterface::zscore PHP Method

zscore() public method

public zscore ( $key, $member )
    public function zscore($key, $member);

Usage Example

Beispiel #1
0
 public function it_can_zscore()
 {
     $this->client->zscore('test', 'test')->shouldBeCalled()->willReturn(1);
     $this->zScore('test', 'test')->shouldReturn(1);
     $this->client->zscore('test', 'test')->willThrow($this->predisException);
     $this->shouldThrow(DriverException::class)->during('zScore', ['test', 'test']);
 }