WIP: somethings wrong.. #19

Closed
muellerr wants to merge 808 commits from source/master into master
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 03b0ae7b68 - Show all commits

View File

@ -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;

View File

@ -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();