Kraken\_Unit\Channel\ChannelTest::testApiCreateProtocol_CreatesProtocol_WhenNullPassed PHP Method

testApiCreateProtocol_CreatesProtocol_WhenNullPassed() public method

    public function testApiCreateProtocol_CreatesProtocol_WhenNullPassed()
    {
        $channel = $this->createChannel();
        $result = $channel->createProtocol();
        $this->assertInstanceOf(ProtocolInterface::class, $result);
        $this->assertSame('', $result->getMessage());
    }
ChannelTest