Пример #1
0
 public function testRandomDigitReturnsDigit()
 {
     $this->assertTrue(BaseProvider::randomDigit() >= 0);
     $this->assertTrue(BaseProvider::randomDigit() < 10);
 }
Пример #2
0
 public static function randomDigit()
 {
     return parent::randomDigit();
 }