Exemplo n.º 1
0
 public function testUseless()
 {
     $key = 'test';
     $value = uniqid('test:');
     $o = new TxtView();
     $this->assertNull($o->assign($key, $value));
 }
Exemplo n.º 2
0
 public function testUseless()
 {
     $key = 'test';
     $value = uniqid('test:');
     $o = new TxtView();
     $this->assertEmpty($o->append($key, $value));
 }
Exemplo n.º 3
0
 public function testUseless()
 {
     $o = new TxtView();
     ob_start();
     $o->display('test');
     $output = ob_get_clean();
     $this->assertEquals('', $output);
 }