You are here

public function ExcludeSpecifiedItemsProcessorTest::testSupportsStage in Facets 8

Tests supportsStage().

File

tests/src/Unit/Plugin/processor/ExcludeSpecifiedItemsProcessorTest.php, line 403

Class

ExcludeSpecifiedItemsProcessorTest
Unit test for processor.

Namespace

Drupal\Tests\facets\Unit\Plugin\processor

Code

public function testSupportsStage() {
  $this
    ->assertTrue($this->processor
    ->supportsStage('build'));
  $this
    ->assertFalse($this->processor
    ->supportsStage('sort'));
}