Completed
Push — develop ( 9b1d71...66130e )
by Adam
03:07 queued 01:21
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
4
namespace IBM\Watson\Common\tests;
5
6
use IBM\Watson\Common\AbstractClient;
7
use IBM\Watson\Common\stubs\Client;
8
use PHPUnit\Framework\TestCase;
9
10
class ClientTest extends TestCase
11
{
12
    public function testCreate()
13
    {
14
        $client = Client::create();
15
        $this->assertInstanceOf(AbstractClient::class, $client);
16
    }
17
}
18