예제 #1
0
 /** 
  * @test
  * @depends tabIndentation
  */
 public function fallbackToTabIndentation()
 {
     $html = new Silkworm();
     $html->setIndentation("A");
     $html->html($html->head(), $html->body());
     $this->assertSame("<html>\n\t<head></head>\n\t<body></body>\n</html>\n", (string) $html, "Failed to return div tag as parent.");
 }