public function AssetWriterTest::testGetCombinations

@dataProvider getCombinationTests

File

drupal/core/vendor/kriswallsmith/assetic/tests/Assetic/Test/AssetWriterTest.php, line 136

Class

AssetWriterTest

Namespace

Assetic\Test

Code

public function testGetCombinations($vars, $expectedCombinations) {
  $ref = new \ReflectionMethod($this->writer, 'getCombinations');
  $ref
    ->setAccessible(true);
  $this
    ->assertEquals($expectedCombinations, $ref
    ->invoke($this->writer, $vars));
}