Completed
Push — develop ( c8d2e9...9b1d71 )
by Adam
03:00
created

ClientTest   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 2
dl 0
loc 8
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A testCreate() 0 5 1
1
<?php
2
3
namespace IBM\Watson\Common\stubs;
4
5
use IBM\Watson\Common\AbstractClient;
6
use PHPUnit\Framework\TestCase;
7
8
class ClientTest extends TestCase
9
{
10
    public function testCreate()
11
    {
12
        $client = Client::create();
13
        $this->assertInstanceOf(AbstractClient::class, $client);
14
    }
15
}
16