Ejemplo n.º 1
0
 /**
  * @group default
  * @depends testQuestFNNo
  */
 public function testQuestUndefinedNo()
 {
     $fragments = ['vcard' => '{{output,?x-undefined}}', 'output' => 'Output'];
     $template = new Template($fragments);
     $vcard = new vCard();
     $this->assertEmpty($vcard->__get('x-undefined'));
     // precondition
     $output = $template->output($vcard);
     $this->assertEmpty($output);
 }