Example #1
0
 public function testSetIsAlias()
 {
     try {
         $this->_request->set('foo', 'bar');
         $this->fail('set() should alias to __set(), and throw an exception');
     } catch (Exception $e) {
         // success
     }
 }