Inheritance: extends DMS\Filter\Filters\Loader\FilterLoader, implements Symfony\Component\DependencyInjection\ContainerAwareInterface
 public function testGetFilterForRuleCascade()
 {
     $this->container->expects($this->once())->method('has')->will($this->returnValue(false));
     $this->container->expects($this->never())->method('get');
     $filter = $this->loader->getFilterForRule(new StripTags());
     $this->assertInstanceOf('\\DMS\\Filter\\Filters\\StripTags', $filter);
 }