Tests passent

This commit is contained in:
2025-10-02 10:42:33 +02:00
parent 715a448b80
commit 7882056fbb
11 changed files with 28905 additions and 28818 deletions

File diff suppressed because it is too large Load Diff

Binary file not shown.

View File

@@ -34,7 +34,7 @@ public:
BOOST_AUTO_TEST_CASE(TestCase_JSONPool)
{
std::ifstream input("../../data/factory.json");
std::ifstream input("../data/factory.json"); // Fix : j'ai retiré un ../ pour que le test passe sous Codeblocks
if (input) {
std::string str((std::istreambuf_iterator<char>(input)), std::istreambuf_iterator<char>());
@@ -71,6 +71,7 @@ BOOST_AUTO_TEST_CASE(TestCase_JSONPool)
BOOST_CHECK(true);
} else {
std::cout << "ERREUR : FICHIER JSON NON TROUVé" << std::endl;
BOOST_CHECK(false);
}
}
}

Binary file not shown.