Kraken\_Unit\Core\CoreTest::testApiBootProviders_BootsProviders PHP Method

testApiBootProviders_BootsProviders() public method

    public function testApiBootProviders_BootsProviders()
    {
        $core = $this->createCore();
        $register = $this->createRegister($core);
        $register->expects($this->once())->method('boot');
        $this->callProtectedMethod($core, 'bootProviders');
    }