コード例 #1
0
ファイル: BaseTest.php プロジェクト: nottavi/Faker
 public function testRandomDigitReturnsDigit()
 {
     $this->assertTrue(BaseProvider::randomDigit() >= 0);
     $this->assertTrue(BaseProvider::randomDigit() < 10);
 }
コード例 #2
0
ファイル: BaseTest.php プロジェクト: ruudk/Faker
 public static function randomDigit()
 {
     return parent::randomDigit();
 }