public function test_create_sharing()
{
$params = ['with' => '[email protected]', 'sendEmailNotification' => 0];
$sharing = $this->client->create_sharing($this->project->hashedId, $params);
$this->assertInternalType('object', $sharing);
$this->assertObjectHasAttribute('activation', $sharing);
}