FIX tests namespaces

This commit is contained in:
fastium
2024-12-27 11:13:22 +01:00
committed by Fastium
parent db834de1fd
commit 7d7fb400ff
7 changed files with 64 additions and 43 deletions

View File

@ -32,7 +32,8 @@
#include "unity/unity.h"
#include "utest/utest.h"
namespace utest::v1 {
namespace utest {
namespace v1 {
// test_bike_system handler function
static void test_bike_system() {
@ -139,9 +140,9 @@ static void test_bike_system_with_event() {
}
}
static utest::v1::status_t greentea_setup(const size_t number_of_cases) {
// Here, we specify the timeout (60s) and the host test (a built-in host test or the
// name of our Python file)
static status_t greentea_setup(const size_t number_of_cases) {
// Here, we specify the timeout (60s) and the host test (a built-in host test
// or the name of our Python file)
GREENTEA_SETUP(180, "default_auto");
return greentea_test_setup_handler(number_of_cases);
@ -156,5 +157,7 @@ static Case cases[] = {
static Specification specification(greentea_setup, cases);
int main() { return !Harness::run(specification); }
}; // namespace utest::v1
}; // namespace v1
}; // namespace utest
int main() { return !utest::v1::Harness::run(utest::v1::specification); }