コード例 #1
0
ファイル: assignTest.php プロジェクト: bogdananton/vsc
 public function testUseless()
 {
     $key = 'test';
     $value = uniqid('test:');
     $o = new XmlView();
     $this->assertNull($o->assign($key, $value));
 }
コード例 #2
0
ファイル: appendTest.php プロジェクト: bogdananton/vsc
 public function testUseless()
 {
     $key = 'test';
     $value = uniqid('test:');
     $o = new XmlView();
     $this->assertEmpty($o->append($key, $value));
 }
コード例 #3
0
ファイル: displayTest.php プロジェクト: bogdananton/vsc
 public function testUseless()
 {
     $o = new XmlView();
     $this->assertEquals('', $o->display('test'));
 }
コード例 #4
0
ファイル: getContentTest.php プロジェクト: bogdananton/vsc
 public function testEmptyAtInitialization()
 {
     $o = new XmlView();
     $this->assertEquals('', $o->getContent());
 }
コード例 #5
0
 public function testEmptyAtInitialization()
 {
     $o = new XmlView();
     $this->assertEquals([], $o->getMetaHeaders());
 }