forked from Wavyzz/dolibarr
Mail collection
This commit is contained in:
26
htdocs/includes/webklex/php-imap/tests/InitialTest.php
Normal file
26
htdocs/includes/webklex/php-imap/tests/InitialTest.php
Normal file
@@ -0,0 +1,26 @@
|
||||
<?php
|
||||
/*
|
||||
* File: InitialTest.php
|
||||
* Category: test
|
||||
* Author: M.Goldenbaum
|
||||
* Created: 02.01.21 04:42
|
||||
* Updated: -
|
||||
*
|
||||
* Description:
|
||||
* -
|
||||
*/
|
||||
|
||||
use PHPUnit\Framework\TestCase;
|
||||
use \Webklex\PHPIMAP\ClientManager;
|
||||
|
||||
class InitialTest extends TestCase {
|
||||
protected $cm;
|
||||
|
||||
public function setUp() {
|
||||
$this->cm = new ClientManager();
|
||||
}
|
||||
|
||||
public function testConfigDefaultAccount() {
|
||||
$this->assertEquals("default", ClientManager::get("default"));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user