Beispiel #1
0
 /**
  *
  */
 public function testRender2()
 {
     $c = Content::create('simple');
     $c->set('content', '');
     $this->assertSame('', $c->render());
     $c->set('content', 'PASS');
     $this->assertSame('PASS', $c->render());
 }