From 88b68cb13d0e57b22f793d07d759c09530c71285 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Gauthier?= Date: Wed, 10 Dec 2025 15:30:03 +0100 Subject: [PATCH] cleaning --- test/EEPROM_test_struct.cpp | 6 +++--- test/unity_config.h | 4 ---- 2 files changed, 3 insertions(+), 7 deletions(-) delete mode 100755 test/unity_config.h diff --git a/test/EEPROM_test_struct.cpp b/test/EEPROM_test_struct.cpp index fd5b56f..f8ce630 100644 --- a/test/EEPROM_test_struct.cpp +++ b/test/EEPROM_test_struct.cpp @@ -314,6 +314,7 @@ void test_get_measure_at(){ // Définition de la fonction de préparation void setUp(void) { + Serial.begin(9600); // mettez ici le code qui doit s'exécuter AVANT CHAQUE test // Par exemple : initialisation de variables, nettoyage d'états } @@ -334,10 +335,9 @@ int main( int argc, char **argv) { // 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 // RUN_TEST(test_get_measure); - RUN_TEST(test_get_measure_at); - RUN_TEST(test_add_measure); RUN_TEST(test_get_struct); RUN_TEST(test_set_struct); - TEST_MESSAGE("Fin des tests."); + RUN_TEST(test_get_measure_at); + RUN_TEST(test_add_measure); UNITY_END(); } \ No newline at end of file diff --git a/test/unity_config.h b/test/unity_config.h deleted file mode 100755 index d2ed5d2..0000000 --- a/test/unity_config.h +++ /dev/null @@ -1,4 +0,0 @@ -#ifndef UNITY_CONFIG_H -#define UNITY_CONFIG_H - -#endif \ No newline at end of file