29 $minificationMock = $this->getMockBuilder(Minification::class)
30 ->disableOriginalConstructor()
33 $minificationMock->expects(self::once())
40 self::assertEquals($expected, $resolver->resolve($input));
51 'input' =>
'test.min.ext',
52 'expected' =>
'test.ext' 56 'input' =>
'test.min.ext',
57 'expected' =>
'test.min.ext' 61 'input' =>
'test.ext',
62 'expected' =>
'test.ext'
dataProviderForTestResolve()
testResolve($isMin, $input, $expected)