From 03b0ae7b68541f8d6268c0dcc8b763e04870d185 Mon Sep 17 00:00:00 2001 From: "Robin.Mueller" Date: Tue, 14 Apr 2020 11:16:51 +0200 Subject: [PATCH] unit test fixes --- test/UnitTestClass.cpp | 2 +- test/UnitTestClass.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/UnitTestClass.cpp b/test/UnitTestClass.cpp index 7050dece..f2925a24 100644 --- a/test/UnitTestClass.cpp +++ b/test/UnitTestClass.cpp @@ -17,7 +17,7 @@ UnitTestClass::UnitTestClass() { UnitTestClass::~UnitTestClass() { } -ReturnValue_t UnitTestClass::performTests() { +ReturnValue_t UnitTestClass::perform_tests() { ReturnValue_t result = test_serialization(); if(result != RETURN_OK) { return result; diff --git a/test/UnitTestClass.h b/test/UnitTestClass.h index c93ea0bc..f1184269 100644 --- a/test/UnitTestClass.h +++ b/test/UnitTestClass.h @@ -41,7 +41,7 @@ public: * Some function which calls all other tests * @return */ - ReturnValue_t performTests(); + ReturnValue_t perform_tests(); ReturnValue_t test_serialization(); ReturnValue_t test_autoserialization();