We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f2d1c0 commit d81f0ebCopy full SHA for d81f0eb
Tests/ExpressionLanguageTest.php
@@ -63,14 +63,6 @@ public function testCachedParse()
63
$this->assertSame($savedParsedExpression, $parsedExpression);
64
}
65
66
- public function testWrongCacheImplementation()
67
- {
68
- $this->expectException('InvalidArgumentException');
69
- $this->expectExceptionMessage('Cache argument has to implement Psr\Cache\CacheItemPoolInterface.');
70
- $cacheMock = $this->getMockBuilder('Psr\Cache\CacheItemSpoolInterface')->getMock();
71
- new ExpressionLanguage($cacheMock);
72
- }
73
-
74
public function testConstantFunction()
75
{
76
$expressionLanguage = new ExpressionLanguage();
0 commit comments