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

testProtectedApiGetTime_ReturnsTime() public method

    public function testProtectedApiGetTime_ReturnsTime()
    {
        $channel = $this->createChannel();
        $time = $this->callProtectedMethod($channel, 'getTime');
        $this->assertSame(time(), (int) ($time / 1000.0));
    }
ChannelTest