Bitpay\AutoloaderTest::testRegister PHP Method

testRegister() public method

Make sure that our autoloader is first in the queue
public testRegister ( )
    public function testRegister()
    {
        Autoloader::register();
        $functions = spl_autoload_functions();
        $this->assertSame(array('Bitpay\\Autoloader', 'autoload'), $functions[0]);
    }