ResponseViolationsTest   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 3
dl 0
loc 8
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A itShouldExtendConstraintViolations() 0 5 1
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