Example #1
0
 /**
  * @inheritDoc
  */
 public function part2()
 {
     return $this->passwordSequencer->next('vzbxxyzz');
 }
 /**
  * @test
  * @dataProvider data
  * @param string $input
  * @param string $expected
  */
 public function generatesNextPassword($input, $expected)
 {
     $this->assertSame($expected, $this->sequencer->next($input));
 }