engine = new Engine(new Container()); $this->engine->loadString(file_get_contents(__DIR__ . '/../TestFiles/SampleArticle/article1.xml')); } public function tearDown() { $this->engine = null; } public function testIfArticleCountIsCorrect() { $this->assertEquals(1, $this->engine->getArticles()->Count()); } }