Ejemplo n.º 1
0
 public function testLabelImplementationBlock()
 {
     $this->assertEquals("\n***test-label***\n***if(True){test-code}***\n", Builder::getLabelImplementationBlock("test-label", "test-code", true));
     $this->assertEquals("\n***other-label***\n***other-code***\n", Builder::getLabelImplementationBlock("other-label", "other-code", false));
 }