Completed
Push — master ( e60d4a...ff1a39 )
by Malte
02:24
created

InitialTest::setUp()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
eloc 1
c 1
b 0
f 1
dl 0
loc 2
rs 10
cc 1
nc 1
nop 0
1
<?php
2
/*
3
* File: InitialTest.php
4
* Category: test
5
* Author: M.Goldenbaum
6
* Created: 02.01.21 04:42
7
* Updated: -
8
*
9
* Description:
10
*  -
11
*/
12
13
use PHPUnit\Framework\TestCase;
14
use \Webklex\PHPIMAP\ClientManager;
15
16
class InitialTest extends TestCase {
17
    protected $cm;
18
19
    public function setUp() {
20
        $this->cm = new ClientManager();
21
    }
22
23
    public function testConfigDefaultAccount() {
24
        $this->assertEquals("default", ClientManager::get("default"));
25
    }
26
}