Skip to content

Commit

Permalink
added functional DownscaleFilterLoaderTest
Browse files Browse the repository at this point in the history
  • Loading branch information
Sascha committed Jun 19, 2015
1 parent 8e51b5f commit 88881ac
Showing 1 changed file with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<?php

namespace Liip\ImagineBundle\Tests\Functional\Imagine\Filter\Loader;

use Liip\ImagineBundle\Tests\Functional\WebTestCase;

class DownscaleFilterLoaderTest extends WebTestCase
{
public function testCouldBeGetFromContainerAsService()
{
$this->createClient();
$service = self::$kernel->getContainer()->get('liip_imagine.filter.loader.downscale');

$this->assertInstanceOf('Liip\ImagineBundle\Imagine\Filter\Loader\DownscaleFilterLoader', $service);
}
}

0 comments on commit 88881ac

Please sign in to comment.