You are here

public function FacetsCustomLabelProcessorTest::testDefaultConfiguration in Facets Custom Label 8

Tests defaultConfiguration().

File

tests/src/Unit/Plugin/processor/FacetsCustomLabelProcessorTest.php, line 49

Class

FacetsCustomLabelProcessorTest
Tests the custom label processor.

Namespace

Drupal\Tests\facets_custom_label\Unit

Code

public function testDefaultConfiguration() {
  $config = $this->processor
    ->defaultConfiguration();
  $this
    ->assertEquals([
    'replacement_values' => '',
  ], $config);
}