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

testApiSetDestination_SetsDestination_WhenDestinationIsNotSet() public method

    public function testApiSetDestination_SetsDestination_WhenDestinationIsNotSet()
    {
        $protocol = $this->createProtocol();
        $protocol->setDestination('destination');
        $this->assertSame('destination', $protocol->getDestination());
    }
ProtocolTest