Searched refs:decoratorHeadings (Results 1 – 1 of 1) sorted by relevance
/plugin/latexport/_test/ |
H A D | decorator_headings.test.php | 16 private $decoratorHeadings; variable in DecoratorHeadingsTest 24 $this->decoratorHeadings = new DecoratorHeadings($this->decoratorMock); 28 $this->decoratorHeadings->header("text1", 1, 10); // This would open the main matter. 29 $this->decoratorHeadings->header("text2", 1, 20); // This would open the appendix. 30 $this->decoratorHeadings->header("text3", 1, 30); // This is a chapter in the appendix. 31 $this->decoratorHeadings->header("text4", 1, 40); // This is a chapter in the appendix. 42 $this->decoratorHeadings->header("text1", 2, 10); // This is a chapter in the front matter. 43 $this->decoratorHeadings->header("text2", 2, 20); // This is a chapter in the front matter. 44 $this->decoratorHeadings->header("text3", 1, 30); // This opens the main matter. 45 $this->decoratorHeadings->header("text4", 2, 40); // This is a section in the main matter. [all …]
|