RedUNIT\Blackhole\Toolbox::testDoesToolboxContainTheTools PHP Method

testDoesToolboxContainTheTools() public method

Does the toolbox contain the necessary tools ?
    public function testDoesToolboxContainTheTools()
    {
        $toolbox = R::getToolBox();
        asrt($toolbox->getDatabaseAdapter() instanceof Adapter, TRUE);
        asrt($toolbox->getRedBean() instanceof OODB, TRUE);
        asrt($toolbox->getWriter() instanceof QueryWriter, TRUE);
    }