Skip to content

Commit

Permalink
Added more config tests
Browse files Browse the repository at this point in the history
  • Loading branch information
HorstOeko committed Oct 4, 2024
1 parent 403e02f commit e93798a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/testcases/MailConfigTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,9 @@ public function testMailConfigMakeClientManager(): void
$this->assertInstanceOf(ClientManager::class, $clientManagher);
$this->assertNotNull($clientManagher->account("test"));
$this->assertInstanceOf(Client::class, $clientManagher->account("test"));
$this->assertEquals("127.0.0.1", $clientManagher->account("test")->host);
$this->assertEquals(993, $clientManagher->account("test")->port);
$this->assertEquals("imap", $clientManagher->account("test")->protocol);
}

public function testMailConfigAddAccount(): void
Expand Down

0 comments on commit e93798a

Please sign in to comment.