createDatabaseInterface(); $GLOBALS['server'] = 0; } /** * Test for __construct */ public function testConstructor(): void { $parent = NodeFactory::getInstance('NodeFunction'); $this->assertIsArray($parent->links); $this->assertEquals( [ 'text' => [ 'route' => '/database/routines', 'params' => ['item_type' => 'FUNCTION', 'edit_item' => 1, 'db' => null, 'item_name' => null], ], 'icon' => [ 'route' => '/database/routines', 'params' => ['item_type' => 'FUNCTION', 'execute_dialog' => 1, 'db' => null, 'item_name' => null], ], ], $parent->links ); } }