HistogramCreateObjectTest   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A testCreateObjectHistogram() 0 5 1
1
<?php
2
3
// php artisan test
4
namespace Tests\Unit;
5
6
use Tests\TestCase;
7
use Joki20\Http\Controllers\Histogram;
8
9
/**
10
 * Test cases for class Guess.
11
 */
12
class HistogramCreateObjectTest extends TestCase
13
{
14
    // /**
15
    //  * Construct object and verify that the object is instance of class
16
    //  */
17
    public function testCreateObjectHistogram()
18
    {
19
        $histogram = new Histogram();
20
        $this->assertInstanceOf("\Joki20\Http\Controllers\Histogram", $histogram);
21
    }
22
}
23