2
0
forked from Wavyzz/dolibarr

Mail collection

This commit is contained in:
Faustin
2022-08-12 10:33:06 +02:00
parent 56fa4d3413
commit b226f51ef4
74 changed files with 11961 additions and 0 deletions

View 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"));
}
}