Kraken\_Unit\Channel\Record\ResponseRecordStorageTest::testApiGetResponse_ReturnsResponse PHP Method

testApiGetResponse_ReturnsResponse() public method

    public function testApiGetResponse_ReturnsResponse()
    {
        $obj = $this->createResponseRecordStorage();
        $pid = 'pid';
        $alias = 'alias';
        $rep = new ResponseRecord($pid, $alias);
        $this->callProtectedMethod($obj, 'addResponse', [$pid, $rep]);
        $result = $this->callProtectedMethod($obj, 'getResponse', [$pid]);
        $this->assertSame($result, $rep);
    }