Passed
Push — master ( 31921a...9884a8 )
by Johan
05:54
created

ScoringTraitTest::testCheckFullRow()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 13

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 13
rs 9.8333
c 0
b 0
f 0
cc 1
nc 1
nop 0
1
<?php
2
3
// php artisan test
4
namespace Tests\Unit;
5
6
// use PHPUnit\Framework\TestCase;
7
use Tests\TestCase;
8
use Joki20\Http\Controllers\PokerSquares;
9
use Joki20\Http\Controllers\Setup;
10
use Joki20\Http\Controllers\Scoring;
11
use Illuminate\Support\Facades\Session;
12
13
/**
14
 * Test cases for trait Scoring.
15
 */
16
class ScoringTraitTest extends TestCase
17
{
18
    // /**
19
    //  * Construct object and verify that the object is instance of class
20
    //  */
21
    public function testCreateObjectPokerSquares()
22
    {
23
        $pokersquares = new PokerSquares();
24
        $this->assertInstanceOf("\Joki20\Http\Controllers\PokerSquares", $pokersquares);
25
    }
26
}
27