From 24ef798202af9ce263fbc95acfd68ade6069931b Mon Sep 17 00:00:00 2001 From: Alexandre Janniaux Date: Sun, 24 Nov 2024 17:15:25 +0100 Subject: [PATCH] phpunit: AllTest: register new accountancysystem test --- test/phpunit/AllTests.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/phpunit/AllTests.php b/test/phpunit/AllTests.php index 7a2c903b14b..12e58357aa4 100644 --- a/test/phpunit/AllTests.php +++ b/test/phpunit/AllTests.php @@ -241,6 +241,9 @@ class AllTests require_once dirname(__FILE__).'/KnowledgeRecordTest.php'; $suite->addTestSuite('KnowledgeRecordTest'); + require_once dirname(__FILE__).'/AccountancySystemTest.php'; + $suite->addTestSuite('AccountancySystemTest'); + require_once dirname(__FILE__).'/AccountingAccountTest.php'; $suite->addTestSuite('AccountingAccountTest'); require_once dirname(__FILE__).'/AssetModelTest.php';