engine = new Engine(new Container()); $this->engine->loadString(file_get_contents(__DIR__ . '/../TestFiles/CalcValue/simple.xml')); } public function tearDown(): void { $this->engine = null; } public function testIfParseValue(): void { $this->assertEquals(20, $this->engine->getPrice()); } }