root = vfsStream::setup(); } public function testRender() { $render = new ArticleRender( "cool title", "my gemtext", ['date' => '2021-01-01'] ); $output = $render->render(__DIR__ . "/../templates/article.tpl"); $this->assertStringContainsString("# cool title\n\n", $output); $this->assertStringContainsString("\n\nmy gemtext\n\n", $output); $this->assertStringContainsString("\n\n=> /gemlog.gmi", $output); } public function testMissingDate() { $this->expectException(\Exception::class); $this->expectExceptionMessage('no date property'); $render = new ArticleRender( "cool title", "my gemtext", ); } }