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

testApiStart_CallsStartOnModel() public method

    public function testApiStart_CallsStartOnModel()
    {
        $channel = $this->createChannel();
        $model = $this->createModel();
        $model->expects($this->once())->method('start');
        $channel->start();
    }
ChannelTest