contactProperties['address'] = new \CMText\RichContent\Common\ContactAddress('Breda', 'Netherlands', 'NL'); $this->contactProperties['birthday'] = new \CMText\RichContent\Common\ContactBirthday( new \DateTime() ); $this->contactProperties['email'] = new \CMText\RichContent\Common\ContactEmail('info@cm.com'); $this->contactProperties['name'] = new \CMText\RichContent\Common\ContactName('CM.com Be part of it.'); $this->contactProperties['organization'] = new \CMText\RichContent\Common\ContactOrganization('CM.com', 'Development'); $this->contactProperties['phonenumber'] = new \CMText\RichContent\Common\ContactPhonenumber('+31765727000'); $this->contactProperties['url'] = new \CMText\RichContent\Common\ContactUrl('https://cm.com'); } public function testJsonSerialize() { $this->assertJson( json_encode(new Contact()) ); } public function testAddUrl() { $this->assertObjectHasAttribute( 'urls', (new Contact( $this->contactProperties['url'] ))->jsonSerialize() ); } public function testAddPhonenumber() { $this->assertObjectHasAttribute( 'phones', (new Contact( $this->contactProperties['phonenumber'] ))->jsonSerialize() ); } public function testSetOrganization() { $this->assertObjectHasAttribute( 'org', (new Contact( $this->contactProperties['organization'] ))->jsonSerialize() ); } public function test__construct() { // empty Contact initialization $this->assertInstanceOf( Contact::class, new Contact() ); // partial Contact initialization $this->assertInstanceOf( Contact::class, new Contact( $this->contactProperties['birthday'], [ $this->contactProperties['url'], $this->contactProperties['url'], ] ) ); // full Contact initialization $this->assertInstanceOf( Contact::class, new Contact( $this->contactProperties['address'], $this->contactProperties['birthday'], $this->contactProperties['email'], $this->contactProperties['name'], $this->contactProperties['organization'], $this->contactProperties['phonenumber'], $this->contactProperties['url'] ) ); } public function testSetBirthday() { $this->assertObjectHasAttribute( 'birthday', (new Contact( $this->contactProperties['birthday'] ))->jsonSerialize() ); } public function testSetName() { $this->assertObjectHasAttribute( 'name', (new Contact( $this->contactProperties['name'] ))->jsonSerialize() ); } public function testAddEmail() { $this->assertObjectHasAttribute( 'emails', (new Contact( $this->contactProperties['email'] ))->jsonSerialize() ); } public function testAddAddress() { $this->assertObjectHasAttribute( 'addresses', (new Contact( $this->contactProperties['address'] ))->jsonSerialize() ); } public function testContactException() { $this->expectException(ContactException::class); new Contact('just a string'); } }