Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Tests] Add missing PHPUnit @covers annotations #1054

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 3 additions & 0 deletions Tests/Async/CacheResolvedTest.php
Expand Up @@ -6,6 +6,9 @@
use Liip\ImagineBundle\Async\CacheResolved;
use PHPUnit\Framework\TestCase;

/**
* @covers \Liip\ImagineBundle\Async\CacheResolved
*/
class CacheResolvedTest extends TestCase
{
public static function setUpBeforeClass()
Expand Down
3 changes: 3 additions & 0 deletions Tests/Async/ResolveCacheProcessorTest.php
Expand Up @@ -16,6 +16,9 @@
use Liip\ImagineBundle\Service\FilterService;
use Liip\ImagineBundle\Tests\AbstractTest;

/**
* @covers \Liip\ImagineBundle\Async\ResolveCacheProcessor
*/
class ResolveCacheProcessorTest extends AbstractTest
{
public static function setUpBeforeClass()
Expand Down
3 changes: 3 additions & 0 deletions Tests/Async/ResolveCacheTest.php
Expand Up @@ -6,6 +6,9 @@
use Liip\ImagineBundle\Async\ResolveCache;
use PHPUnit\Framework\TestCase;

/**
* @covers \Liip\ImagineBundle\Async\ResolveCache
*/
class ResolveCacheTest extends TestCase
{
public static function setUpBeforeClass()
Expand Down
3 changes: 3 additions & 0 deletions Tests/Functional/Imagine/Cache/SignerTest.php
Expand Up @@ -14,6 +14,9 @@
use Liip\ImagineBundle\Imagine\Cache\SignerInterface;
use Liip\ImagineBundle\Tests\Functional\AbstractWebTestCase;

/**
* @covers \Liip\ImagineBundle\Imagine\Cache\Signer
*/
class SignerTest extends AbstractWebTestCase
{
public function testGetAsService()
Expand Down
Expand Up @@ -7,6 +7,9 @@
use Liip\ImagineBundle\Model\Binary;
use Liip\ImagineBundle\Tests\AbstractTest;

/**
* @covers \Liip\ImagineBundle\Imagine\Filter\PostProcessor\JpegOptimPostProcessor
*/
class JpegOptimPostProcessorTest extends AbstractTest
{
public function testJpegOptimPostProcessor()
Expand Down
Expand Up @@ -7,6 +7,9 @@
use Liip\ImagineBundle\Model\Binary;
use Liip\ImagineBundle\Tests\AbstractTest;

/**
* @covers \Liip\ImagineBundle\Imagine\Filter\PostProcessor\MozJpegPostProcessor
*/
class MozJpegPostProcessorTest extends AbstractTest
{
public function testMozJpegPostProcessor()
Expand Down
Expand Up @@ -7,6 +7,9 @@
use Liip\ImagineBundle\Model\Binary;
use Liip\ImagineBundle\Tests\AbstractTest;

/**
* @covers \Liip\ImagineBundle\Imagine\Filter\PostProcessor\OptiPngPostProcessor
*/
class OptiPngPostProcessorTest extends AbstractTest
{
public function testJpegOptimPostProcessor()
Expand Down
Expand Up @@ -7,6 +7,9 @@
use Liip\ImagineBundle\Model\Binary;
use Liip\ImagineBundle\Tests\AbstractTest;

/**
* @covers \Liip\ImagineBundle\Imagine\Filter\PostProcessor\PngquantPostProcessor
*/
class PngquantPostProcessorTest extends AbstractTest
{
public function testPngquantPostProcessor()
Expand Down