public function testInstanceHolderGet()
 {
     global $_GET;
     if (!isset($_GET) || !is_array($_GET)) {
         $_GET = array();
     }
     $expected = \lillockey\Utilities\App\Access\ArrayAccess\GetArray::class;
     $instance = \lillockey\Utilities\App\InstanceHolder::get();
     $this->assertInstanceOf($expected, $instance, "Get class is not what was expected");
 }