1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
|
<?php
declare(strict_types=1);
namespace Faker\Test\Core;
use Faker\Test\TestCase;
final class NumberTest extends TestCase
{
public function testRandomDigitReturnsInteger()
{
self::assertIsInt($this->faker->randomDigit());
}
public function testRandomDigitReturnsDigit()
{
self::assertGreaterThanOrEqual(0, $this->faker->randomDigit());
self::assertLessThan(10, $this->faker->randomDigit());
}
public function testRandomDigitNotNullReturnsNotNullDigit()
{
self::assertGreaterThan(0, $this->faker->randomDigitNotZero());
self::assertLessThan(10, $this->faker->randomDigitNotZero());
}
public function testRandomDigitNotReturnsValidDigit()
{
for ($i = 0; $i <= 9; ++$i) {
self::assertGreaterThanOrEqual(0, $this->faker->randomDigitNot($i));
self::assertLessThan(10, $this->faker->randomDigitNot($i));
self::assertNotSame($this->faker->randomDigitNot($i), $i);
}
}
public function testRandomNumberThrowsExceptionWhenCalledWithATooHighNumberOfDigits()
{
$this->expectException(\InvalidArgumentException::class);
$this->faker->randomNumber(10);
}
public function testRandomNumberHasValidNullableAutogenerate()
{
self::assertGreaterThan(0, $this->faker->randomNumber());
}
public function testRandomNumberReturnsInteger()
{
self::assertIsInt($this->faker->randomNumber());
self::assertIsInt($this->faker->randomNumber(5, false));
}
public function testRandomNumberReturnsDigit()
{
self::assertGreaterThanOrEqual(0, $this->faker->randomNumber(3));
self::assertLessThan(1000, $this->faker->randomNumber(3));
}
public function testRandomNumberAcceptsStrictParamToEnforceNumberSize()
{
self::assertEquals(5, strlen((string) $this->faker->randomNumber(5, true)));
}
public function testNumberBetween()
{
$min = 5;
$max = 6;
self::assertGreaterThanOrEqual($min, $this->faker->numberBetween($min, $max));
self::assertGreaterThanOrEqual($this->faker->numberBetween($min, $max), $max);
}
public function testNumberBetweenAcceptsZeroAsMax()
{
self::assertEquals(0, $this->faker->numberBetween(0, 0));
}
public function testRandomFloat()
{
$min = 4;
$max = 10;
$nbMaxDecimals = 8;
$result = $this->faker->randomFloat($nbMaxDecimals, $min, $max);
$parts = explode('.', (string) $result);
self::assertIsFloat($result);
self::assertGreaterThanOrEqual($min, $result);
self::assertLessThanOrEqual($max, $result);
self::assertLessThanOrEqual($nbMaxDecimals, strlen($parts[1]));
}
public function testRandomFloatHasValidNullableAutogenerate()
{
self::assertGreaterThan(0, $this->faker->randomFloat());
}
}
|