Kraken\_Unit\Channel\ChannelCompositeTest::testProtectedApiCreateMessageProtocol_AcceptsMessageProtocol PHP Метод

testProtectedApiCreateMessageProtocol_AcceptsMessageProtocol() публичный Метод

    public function testProtectedApiCreateMessageProtocol_AcceptsMessageProtocol()
    {
        $channel = $this->createChannel();
        $message = new Protocol();
        $result = $this->callProtectedMethod($channel, 'createMessageProtocol', [$message]);
        $this->assertSame($message, $result);
    }
ChannelCompositeTest