diff --git "a/frameworks\\utest/utest/case.h" "b/frameworks\\utest/utest/case.h" index 07106a4fc2..273dc5fc21 100644 --- "a/frameworks\\utest/utest/case.h" +++ "b/frameworks\\utest/utest/case.h" @@ -16,8 +16,8 @@ **************************************************************************** */ -#ifndef MBED_TEST_ASYNC_CASES_H -#define MBED_TEST_ASYNC_CASES_H +#ifndef UTEST_CASES_H +#define UTEST_CASES_H #include #include @@ -126,4 +126,4 @@ namespace v0 { } // namespace v0 } // namespace utest - #endif // MBED_TEST_ASYNC_CASES_H + #endif // UTEST_CASES_H diff --git "a/frameworks\\utest/utest/default_handlers.h" "b/frameworks\\utest/utest/default_handlers.h" index 102a80bade..c3d4e62613 100644 --- "a/frameworks\\utest/utest/default_handlers.h" +++ "b/frameworks\\utest/utest/default_handlers.h" @@ -16,8 +16,8 @@ **************************************************************************** */ -#ifndef MBED_TEST_ASYNC_DEFAULT_HANDLER_H -#define MBED_TEST_ASYNC_DEFAULT_HANDLER_H +#ifndef UTEST_DEFAULT_HANDLER_H +#define UTEST_DEFAULT_HANDLER_H #include #include @@ -170,4 +170,4 @@ namespace v0 { } // namespace v0 } // namespace utest -#endif // MBED_TEST_ASYNC_DEFAULT_HANDLER_H +#endif // UTEST_DEFAULT_HANDLER_H diff --git "a/frameworks\\utest/utest/harness.h" "b/frameworks\\utest/utest/harness.h" index fea99d4104..ea6aaf60ab 100644 --- "a/frameworks\\utest/utest/harness.h" +++ "b/frameworks\\utest/utest/harness.h" @@ -16,8 +16,8 @@ **************************************************************************** */ -#ifndef MBED_TEST_ASYNC_HARNESS_H -#define MBED_TEST_ASYNC_HARNESS_H +#ifndef UTEST_HARNESS_H +#define UTEST_HARNESS_H #include #include @@ -70,4 +70,4 @@ namespace v0 { } // namespace v0 } // namespace utest -#endif // MBED_TEST_ASYNC_HARNESS_H +#endif // UTEST_HARNESS_H diff --git "a/frameworks\\utest/utest/specification.h" "b/frameworks\\utest/utest/specification.h" index daec492d2e..6b49bfe758 100644 --- "a/frameworks\\utest/utest/specification.h" +++ "b/frameworks\\utest/utest/specification.h" @@ -16,8 +16,8 @@ **************************************************************************** */ -#ifndef MBED_TEST_ASYNC_SPECIFICATION_H -#define MBED_TEST_ASYNC_SPECIFICATION_H +#ifndef UTEST_SPECIFICATION_H +#define UTEST_SPECIFICATION_H #include #include @@ -94,4 +94,4 @@ namespace v0 { } // namespace v0 } // namespace utest - #endif // MBED_TEST_ASYNC_SPECIFICATION_H + #endif // UTEST_SPECIFICATION_H diff --git "a/frameworks\\utest/utest/types.h" "b/frameworks\\utest/utest/types.h" index bdaf1653d6..b65a0ddcac 100644 --- "a/frameworks\\utest/utest/types.h" +++ "b/frameworks\\utest/utest/types.h" @@ -16,8 +16,8 @@ **************************************************************************** */ -#ifndef MBED_TEST_ASYNC_TYPES_H -#define MBED_TEST_ASYNC_TYPES_H +#ifndef UTEST_TYPES_H +#define UTEST_TYPES_H #include #include @@ -223,4 +223,4 @@ namespace v0 { } // namespace v0 } // namespace utest -#endif // MBED_TEST_ASYNC_TYPES_H +#endif // UTEST_TYPES_H diff --git "a/frameworks\\utest/utest/unity_handler.h" "b/frameworks\\utest/utest/unity_handler.h" index ac7a332d82..8ce3d06a3f 100644 --- "a/frameworks\\utest/utest/unity_handler.h" +++ "b/frameworks\\utest/utest/unity_handler.h" @@ -16,12 +16,12 @@ **************************************************************************** */ -#ifndef MBED_TEST_ASYNC_UNITY_ASSERT_FAILURE_H -#define MBED_TEST_ASYNC_UNITY_ASSERT_FAILURE_H +#ifndef UTEST_UNITY_ASSERT_FAILURE_H +#define UTEST_UNITY_ASSERT_FAILURE_H #include /// this function is called from the unity module when an assertion failed. void utest_unity_assert_failure(); -#endif // MBED_ASYNC_TEST_UNITY_ASSERT_FAILURE_H +#endif // UTEST_UNITY_ASSERT_FAILURE_H diff --git "a/frameworks\\utest/utest/utest.h" "b/frameworks\\utest/utest/utest.h" index 8d85983cbf..98e20055aa 100644 --- "a/frameworks\\utest/utest/utest.h" +++ "b/frameworks\\utest/utest/utest.h" @@ -16,12 +16,13 @@ **************************************************************************** */ -#ifndef MBED_TEST_ASYNC_H -#define MBED_TEST_ASYNC_H +#ifndef UTEST_H +#define UTEST_H #include "types.h" #include "case.h" #include "default_handlers.h" #include "harness.h" -#endif // MBED_TEST_ASYNC_H + +#endif // UTEST_H