Test Setup Failed
Branch main (20697e)
by Nobufumi
13:34
created

LogTest   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 6
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
eloc 3
c 1
b 0
f 1
dl 0
loc 6
rs 10
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A testLog() 0 4 1
1
<?php
2
3
use PHPUnit\Framework\TestCase;
4
use Jidaikobo\Log;
5
6
class LogTest extends TestCase
7
{
8
    public function testLog()
9
    {
10
        $logger = new Log();
11
        $this->assertTrue(method_exists($logger, 'init'));
12
    }
13
}
14