public function test_create_project()
{
$created_project = $this->client->create_project(['name' => 'Test Project Function']);
$this->assertInternalType('object', $created_project);
$this->assertEquals('Test Project Function', $created_project->name);
$this->client->delete_project($created_project->hashedId);
}