Skip to content

Commit

Permalink
Merge pull request #1054 from robfrawley/feature-add-missing-phpunit-…
Browse files Browse the repository at this point in the history
…covers-annotations

[Tests] Add missing PHPUnit @Covers annotations
  • Loading branch information
robfrawley committed Feb 16, 2018
2 parents d65881b + d0b9798 commit 16585a2
Show file tree
Hide file tree
Showing 8 changed files with 24 additions and 0 deletions.
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

0 comments on commit 16585a2

Please sign in to comment.