You are here

class Porter2Test1 in Porter-Stemmer 8

Tests the "PorterStemmer" implementation.

@coversDefaultClass \Drupal\porterstemmer\Porter2 @group porterstemmer

Hierarchy

Expanded class hierarchy of Porter2Test1

See also

\Drupal\porterstemmer\Porter2

File

tests/src/Unit/Porter2Test1.php, line 16

Namespace

Drupal\Tests\porterstemmer\Unit
View source
class Porter2Test1 extends UnitTestCase {
  use TestItemsTrait;

  /**
   * Test Porter2::stem() with a data provider method.
   *
   * Uses the data provider method to test with a wide range of words/stems.
   *
   * @dataProvider stemDataProvider
   */
  public function testStem($word, $stem) {
    $this
      ->assertEquals($stem, Porter2::stem($word));
  }

  /**
   * Data provider for testStem().
   *
   * @return array
   *   Nested arrays of values to check:
   *   - $word
   *   - $stem
   */
  public function stemDataProvider() {
    return $this
      ->retrieveStemWords(0, 5000);
  }

}

Members

Namesort descending Modifiers Type Description Overrides
PhpunitCompatibilityTrait::getMock Deprecated public function Returns a mock object for the specified class using the available method.
PhpunitCompatibilityTrait::setExpectedException Deprecated public function Compatibility layer for PHPUnit 6 to support PHPUnit 4 code.
Porter2Test1::stemDataProvider public function Data provider for testStem().
Porter2Test1::testStem public function Test Porter2::stem() with a data provider method.
TestItemsTrait::retrieveStemWords public function Load an associative array of known input/output pairs.
UnitTestCase::$randomGenerator protected property The random generator.
UnitTestCase::$root protected property The app root. 1
UnitTestCase::assertArrayEquals protected function Asserts if two arrays are equal by sorting them first.
UnitTestCase::getBlockMockWithMachineName Deprecated protected function Mocks a block with a block plugin. 1
UnitTestCase::getClassResolverStub protected function Returns a stub class resolver.
UnitTestCase::getConfigFactoryStub public function Returns a stub config factory that behaves according to the passed array.
UnitTestCase::getConfigStorageStub public function Returns a stub config storage that returns the supplied configuration.
UnitTestCase::getContainerWithCacheTagsInvalidator protected function Sets up a container with a cache tags invalidator.
UnitTestCase::getRandomGenerator protected function Gets the random generator for the utility methods.
UnitTestCase::getStringTranslationStub public function Returns a stub translation manager that just returns the passed string.
UnitTestCase::randomMachineName public function Generates a unique random string containing letters and numbers.
UnitTestCase::setUp protected function 340