ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ilMailAddressTest.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
26 {
27  private const LOCAL_PART = 'phpunit';
28  private const DOMAIN_PART = 'ilias.de';
29 
31  {
32  $address = new ilMailAddress(self::LOCAL_PART, self::DOMAIN_PART);
33 
34  $this->assertInstanceOf('ilMailAddress', $address);
35 
36  return $address;
37  }
38 
42  public function testAddressShouldReturnMailboxAndHost(ilMailAddress $address): void
43  {
44  $this->assertSame(self::LOCAL_PART, $address->getMailbox());
45  $this->assertSame(self::DOMAIN_PART, $address->getHost());
46  }
47 }
testAddressShouldReturnMailboxAndHost(ilMailAddress $address)
testInstanceCanBeCreated
Class ilMailBaseTest.
Class ilMailAddressTest.
Class ilMailAddress.