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

testApiConstructor_CreatesInstance() public method

    public function testApiConstructor_CreatesInstance()
    {
        $channel = $this->createChannel();
        $this->assertInstanceOf(Channel::class, $channel);
        $this->assertInstanceOf(ChannelInterface::class, $channel);
    }
ChannelTest