init
This commit is contained in:
@@ -0,0 +1,50 @@
|
||||
<?php
|
||||
|
||||
namespace HybridauthTest\Hybridauth\User;
|
||||
|
||||
use Hybridauth\User\Contact;
|
||||
|
||||
class ContactTest extends \PHPUnit\Framework\TestCase
|
||||
{
|
||||
public function test_instance_of()
|
||||
{
|
||||
$contact = new Contact();
|
||||
|
||||
$this->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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user