Esempio n. 1
0
 public function testRandomDigitReturnsDigit()
 {
     $this->assertTrue(BaseProvider::randomDigit() >= 0);
     $this->assertTrue(BaseProvider::randomDigit() < 10);
 }
Esempio n. 2
0
 public static function randomDigit()
 {
     return parent::randomDigit();
 }