class Porter2Test3 in Porter-Stemmer 8
Tests the "PorterStemmer" implementation.
@coversDefaultClass \Drupal\porterstemmer\Porter2 @group porterstemmer
Hierarchy
- class \Drupal\Tests\UnitTestCase extends \PHPUnit\Framework\TestCase uses PhpunitCompatibilityTrait- class \Drupal\Tests\porterstemmer\Unit\Porter2Test3 uses TestItemsTrait
 
Expanded class hierarchy of Porter2Test3
See also
File
- tests/src/ Unit/ Porter2Test3.php, line 16 
Namespace
Drupal\Tests\porterstemmer\UnitView source
class Porter2Test3 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(10000, 5000);
  }
}Members
| Name   | Modifiers | Type | Description | Overrides | 
|---|---|---|---|---|
| PhpunitCompatibilityTrait:: | public | function | Returns a mock object for the specified class using the available method. | |
| PhpunitCompatibilityTrait:: | public | function | Compatibility layer for PHPUnit 6 to support PHPUnit 4 code. | |
| Porter2Test3:: | public | function | Data provider for testStem(). | |
| Porter2Test3:: | public | function | Test Porter2::stem() with a data provider method. | |
| TestItemsTrait:: | public | function | Load an associative array of known input/output pairs. | |
| UnitTestCase:: | protected | property | The random generator. | |
| UnitTestCase:: | protected | property | The app root. | 1 | 
| UnitTestCase:: | protected | function | Asserts if two arrays are equal by sorting them first. | |
| UnitTestCase:: | protected | function | Mocks a block with a block plugin. | 1 | 
| UnitTestCase:: | protected | function | Returns a stub class resolver. | |
| UnitTestCase:: | public | function | Returns a stub config factory that behaves according to the passed array. | |
| UnitTestCase:: | public | function | Returns a stub config storage that returns the supplied configuration. | |
| UnitTestCase:: | protected | function | Sets up a container with a cache tags invalidator. | |
| UnitTestCase:: | protected | function | Gets the random generator for the utility methods. | |
| UnitTestCase:: | public | function | Returns a stub translation manager that just returns the passed string. | |
| UnitTestCase:: | public | function | Generates a unique random string containing letters and numbers. | |
| UnitTestCase:: | protected | function | 340 | 
