assertInstanceOf('\\Hybridauth\\User\\Contact', $contact); } public function test_has_attributes() { $contact_class = '\\Hybridauth\\User\\Contact'; $this->assertClassHasAttribute('identifier', $contact_class); $this->assertClassHasAttribute('webSiteURL', $contact_class); $this->assertClassHasAttribute('profileURL', $contact_class); $this->assertClassHasAttribute('photoURL', $contact_class); $this->assertClassHasAttribute('displayName', $contact_class); $this->assertClassHasAttribute('description', $contact_class); $this->assertClassHasAttribute('email', $contact_class); } public function test_set_attributes() { $contact = new Contact(); $contact->identifier = true; $contact->webSiteURL = true; $contact->profileURL = true; $contact->photoURL = true; $contact->displayName = true; $contact->description = true; $contact->email = true; } /** * @expectedException \Hybridauth\Exception\UnexpectedValueException */ public function test_property_overloading() { $contact = new Contact(); $contact->slug = true; } }