public function test_copy_project()
{
$copied_project = $this->client->copy_project($this->project->hashedId);
$this->assertInternalType('object', $copied_project);
$this->assertEquals($this->project->name, $copied_project->name);
$this->client->delete_project($copied_project->hashedId);
}