Exemple #1
0
 /**
  * Testing that sequence prefixes are uppercase.
  *
  * @since 1.0
  */
 public function testPrefixValidation()
 {
     try {
         $this->sequence->set('prefix', 'bad');
     } catch (IllegalArguementException $e) {
         $this->assertEquals($this->sequence->getPropObject('prefix')->getHelper(), $e->getMessage(), 'Testing that sequence prefixes are uppercase');
     }
 }