Esempio n. 1
0
 public function testException3()
 {
     try {
         $e = new Expression('hello, [world]');
         $e->render();
     } catch (\atk4\dsql\Exception $e) {
         $this->assertEquals('Expression could not render tag', $e->getMessage());
         $this->assertEquals('world', $e->getParams()['tag']);
     }
 }