Test Failed
Push — master ( ac9ff0...806846 )
by Johan
03:01
created

HistogramCreateObjectTest::testDatabase()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 38

Duplication

Lines 4
Ratio 10.53 %

Importance

Changes 0
Metric Value
dl 4
loc 38
rs 9.312
c 0
b 0
f 0
cc 2
nc 2
nop 0
1
<?php
2
3
// php artisan test
4
namespace Tests\Unit;
5
6
use PHPUnit\Framework\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