Completed
Push — develop ( 9b1d71...66130e )
by Adam
03:07 queued 01:21
created

ClientTest::testCreate()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 5
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
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