class MathTest in Realistic Dummy Content 3.x
Tests for \Drupal\realistic_dummy_content_api\includes\Math.
@group realistic_dummy_content
Hierarchy
- class \Drupal\Tests\realistic_dummy_content_api\Unit\includes\MathTest extends \PHPUnit\Framework\TestCase
Expanded class hierarchy of MathTest
File
- api/
tests/ src/ Unit/ includes/ MathTest.php, line 13
Namespace
Drupal\Tests\realistic_dummy_content_api\Unit\includesView source
class MathTest extends TestCase {
/**
* Tests Math::sequential().
*
* @param int $start
* Start number passed to realistic_dummy_content_api_sequential().
* @param int $end
* End number passed to realistic_dummy_content_api_sequential().
* @param string $hash
* Hash passed to realistic_dummy_content_api_sequential().
* @param int $expected
* Expected result which realistic_dummy_content_api_sequential() is
* expected to return.
*
* @dataProvider providerTestSequential
*/
public function testSequential($start, $end, $hash, $expected) {
$math = new Math();
$result = $math
->sequential($start, $end, $hash);
$this
->assertTrue($result == $expected, 'Sequential number is as expected for ' . $start . ', ' . $end . ' with hash ' . $hash . ': [expected] ' . $expected . ' = [result] ' . $result);
}
/**
* Data provider for $this->testSequential().
*/
public function providerTestSequential() {
return [
[
0,
3,
'a',
0,
],
[
0,
3,
'a',
0,
],
[
0,
3,
'b',
1,
],
[
0,
3,
'b',
1,
],
[
0,
3,
'c',
2,
],
[
0,
3,
'c',
2,
],
[
0,
3,
'd',
3,
],
[
0,
2,
'd',
2,
],
[
10,
13,
'd',
10,
],
[
11,
12,
'd',
11,
],
];
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
MathTest:: |
public | function | Data provider for $this->testSequential(). | |
MathTest:: |
public | function | Tests Math::sequential(). |