itShouldExtendConstraintViolations()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 2
nc 1
nop 0
dl 0
loc 5
rs 10
c 0
b 0
f 0
1
<?php
2
namespace ElevenLabs\Api\Service\Exception;
3
4
use PHPUnit\Framework\TestCase;
5
6
class ResponseViolationsTest extends TestCase
7
{
8
    /** @test */
9
    public function itShouldExtendConstraintViolations()
10
    {
11
        $exception = new ResponseViolations([]);
12
13
        assertThat($exception, isInstanceOf(ConstraintViolations::class));
14
    }
15
}
16