public function testApiKeyErrorHandling()
 {
     BlockScore::$apiKey = 'sk_test_11111111111111111111111111111111';
     try {
         Person::create(array('name_first' => 'Jane', 'name_last' => 'Doe', 'birth_day' => 1, 'birth_month' => 1, 'birth_year' => 1990, 'document_type' => 'ssn', 'document_value' => '0000', 'address_street1' => '123 Something Ave', 'address_city' => 'Newton Falls', 'address_subdivision' => 'OH', 'address_postal_code' => '44444', 'address_country_code' => 'US'));
         // Always fail
         $this->assertTrue(false);
     } catch (Util\Exception $e) {
         $expected = 'invalid_request_error';
         $this->assertSame($expected, $e->type);
         $this->assertTrue($e instanceof Util\Exception);
     }
     self::setTestApiKey();
 }