Kraken\_Unit\Channel\Protocol\ProtocolTest::testApiGetAll_ReturnsAll PHP Method

testApiGetAll_ReturnsAll() public method

    public function testApiGetAll_ReturnsAll()
    {
        $protocol = $this->createProtocol('type', 'pid', 'dest', 'origin', 'message', 'ex', 5);
        $this->assertSame(['type', 'pid', 'dest', 'origin', 'message', 'ex', 5], $protocol->getAll());
    }
ProtocolTest