This commit is contained in:
Thomas Peterson 2025-06-05 17:16:19 +02:00
parent f89cdc0c3d
commit e5845c9a5b

View File

@ -39,7 +39,7 @@ class CalcTest extends TestCase
public function testPrice(): void
{
$this->engine->calc();
file_put_contents("/tmp/f1.txt", print_r($this->engine->getDebugCalcFormel(),true ));
file_put_contents("/tmp/f1.txt", print_r($this->engine->getVariables(), true).print_r($this->engine->getDebugCalcVariables(), true).print_r($this->engine->getDebugCalcFormel(), true));
self::assertSame(131.86, $this->engine->getPrice());
}