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