/**
  * @expectedException \Exception
  * @expectedExceptionMessage Generator is not initialized
  */
 function testUninitializedGenerate()
 {
     $this->rng->generate(30);
 }
Exemple #2
0
 /**
  * @dataProvider stringGenerationProvider
  */
 function testUninitializedGenerate($length, $expectedLength)
 {
     $this->assertEquals($expectedLength, strlen($this->rng->generate($length)));
 }