summaryrefslogtreecommitdiff
path: root/src/tests/eina_cxx/eina_cxx_test_optional.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/tests/eina_cxx/eina_cxx_test_optional.cc')
-rw-r--r--src/tests/eina_cxx/eina_cxx_test_optional.cc16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/tests/eina_cxx/eina_cxx_test_optional.cc b/src/tests/eina_cxx/eina_cxx_test_optional.cc
index 31e9ffe12b..381198c288 100644
--- a/src/tests/eina_cxx/eina_cxx_test_optional.cc
+++ b/src/tests/eina_cxx/eina_cxx_test_optional.cc
@@ -19,7 +19,7 @@ struct nonpod
~nonpod() { nonpod_destructed++; }
};
-START_TEST(eina_cxx_optional_constructors)
+EFL_START_TEST(eina_cxx_optional_constructors)
{
namespace eina = efl::eina;
@@ -56,9 +56,9 @@ START_TEST(eina_cxx_optional_constructors)
<< " nonpod_destructed " << nonpod_destructed << std::endl;
ck_assert(::nonpod_constructed == ::nonpod_destructed);
}
-END_TEST
+EFL_END_TEST
-START_TEST(eina_cxx_optional_rel_ops)
+EFL_START_TEST(eina_cxx_optional_rel_ops)
{
namespace eina = efl::eina;
@@ -87,9 +87,9 @@ START_TEST(eina_cxx_optional_rel_ops)
ck_assert(!(one != one));
ck_assert(!(one != one_again));
}
-END_TEST
+EFL_END_TEST
-START_TEST(eina_cxx_optional_assignment)
+EFL_START_TEST(eina_cxx_optional_assignment)
{
namespace eina = efl::eina;
@@ -132,9 +132,9 @@ START_TEST(eina_cxx_optional_assignment)
assert(a); assert(!b); assert(c); assert(d);
}
-END_TEST
+EFL_END_TEST
-START_TEST(eina_cxx_optional_convertible_types)
+EFL_START_TEST(eina_cxx_optional_convertible_types)
{
namespace eina = efl::eina;
@@ -184,7 +184,7 @@ START_TEST(eina_cxx_optional_convertible_types)
fail_if(*b != *b_s);
fail_if(*c != *c_s);
}
-END_TEST
+EFL_END_TEST
void