CardJokerTest   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 3
c 1
b 0
f 0
dl 0
loc 9
rs 10
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A testCreateCardJoker() 0 4 1
1
<?php
2
3
namespace App\Tests\Card;
4
5
use PHPUnit\Framework\TestCase;
6
use App\Card\CardJoker;
7
8
/**
9
 * Test cases for class CardJoker.
10
 */
11
class CardJokerTest extends TestCase
12
{
13
    /**
14
     * Test creating an instance of CardJoker.
15
     */
16
    public function testCreateCardJoker(): void
17
    {
18
        $deck = new CardJoker();
19
        $this->assertInstanceOf(CardJoker::class, $deck);
20
    }
21
}
22