From c93935372e767f03e648d644c72269b8f593bbc0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Gauthier?= Date: Wed, 10 Dec 2025 14:18:31 +0100 Subject: [PATCH] ouais --- test/EEPROM_test_struct.cpp | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/test/EEPROM_test_struct.cpp b/test/EEPROM_test_struct.cpp index 16dc460..bb9b98f 100644 --- a/test/EEPROM_test_struct.cpp +++ b/test/EEPROM_test_struct.cpp @@ -324,13 +324,10 @@ void tearDown(void) { // Par exemple : désallocation de mémoire, réinitialisation de l'état } -void setup(void) -{ - Serial.begin(9600); -} - //WARNING: Tests are not exhaustive and do not cover all possibilities. int main( int argc, char **argv) { + Serial.begin(9600); + TEST_MESSAGE("Debuts des tests."); UNITY_BEGIN(); // The following commented test is here for faciltate the debug "test_get_measure_at", test_get_measure is private function for the storage_interface class // Maybe removed later @@ -338,6 +335,7 @@ int main( int argc, char **argv) { RUN_TEST(test_get_measure_at); RUN_TEST(test_add_measure); RUN_TEST(test_get_struct); - RUN_TEST(test_set_struct); + RUN_TEST(test_set_struct); + TEST_MESSAGE("Fin des tests."); UNITY_END(); } \ No newline at end of file