From b65b5b818257556da586064e404a01490a37731e Mon Sep 17 00:00:00 2001 From: Clovis Durand Date: Fri, 22 Nov 2019 13:19:34 +0100 Subject: [PATCH] Added default UT case Signed-off-by: Clovis Durand --- software/tests/tests_main.cxx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/software/tests/tests_main.cxx b/software/tests/tests_main.cxx index 2ebd141..f2194a3 100644 --- a/software/tests/tests_main.cxx +++ b/software/tests/tests_main.cxx @@ -34,6 +34,8 @@ int main(const int argc, const char * const * const argv) { /* Executing test */ switch (lTestNum) { + case -1: + std::cout << "[INFO ] Default test." << std::endl; case 0: lResult = test_Relay_isOn() break;