use Shopware\Core\Framework\Test\TestCaseBase\IntegrationTestBehaviour;
/**
* @internal
*/
class VideoTypeDetectorTest extends TestCase
{ use IntegrationTestBehaviour;
public function testDetectGif(): void
{ $type =
$this->
getVideoTypeDetector()->
detect( $this->
createMediaFile(__DIR__ . '/../fixtures/logo.gif'
),
null
);
static::
assertNull($type);
} public function testDetectWebp(): void
{ $type =
$this->
getVideoTypeDetector()->
detect( $this->
createMediaFile(__DIR__ . '/../fixtures/shopware-logo.vp8x.webp'
),