Faker\Test\Provider\BaseTest::testRandomDigitReturnsDigit PHP Méthode

testRandomDigitReturnsDigit() public méthode

    public function testRandomDigitReturnsDigit()
    {
        $this->assertTrue(BaseProvider::randomDigit() >= 0);
        $this->assertTrue(BaseProvider::randomDigit() < 10);
    }
BaseTest