Skip to content

Commit

Permalink
unittests - improve include guard names
Browse files Browse the repository at this point in the history
  • Loading branch information
winterz committed Oct 8, 2021
1 parent 71d73c3 commit d05de46
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions unittests/element_ns_wsdl/test_element_ns_wsdl.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
**
****************************************************************************/

#ifndef TESTCALL_H
#define TESTCALL_H
#ifndef TEST_ELEMENT_NS_WSDL_H
#define TEST_ELEMENT_NS_WSDL_H

#include <QObject>
#include "wsdl_test.h"
Expand All @@ -33,4 +33,4 @@ private slots:
PREFIX test_client;
};

#endif // TESTCALL_H
#endif // TEST_ELEMENT_NS_WSDL_H
6 changes: 3 additions & 3 deletions unittests/optionaltype_boost_optional/test_boostapi.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
**
****************************************************************************/

#ifndef TESTBOOSTAPI_H
#define TESTBOOSTAPI_H
#ifndef TEST_BOOSTAPI_H
#define TEST_BOOSTAPI_H

#include <QObject>
#include "wsdl_test.h"
Expand All @@ -34,4 +34,4 @@ private slots:
private:
};

#endif // TESTBOOSTAPI_H
#endif // TEST_BOOSTAPI_H
6 changes: 3 additions & 3 deletions unittests/optionaltype_pointer/test_optionaltype_pointer.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
**
****************************************************************************/

#ifndef TESTPOINTERAPI_H
#define TESTPOINTERAPI_H
#ifndef TEST_OPTIONALTYPE_POINTER_H
#define TEST_OPTIONALTYPE_POINTER_H

#include <QObject>
#include "wsdl_test.h"
Expand All @@ -35,4 +35,4 @@ private slots:
private:
};

#endif // TESTPOINTERAPI_H
#endif // TEST_OPTIONALTYPE_POINTER_H
6 changes: 3 additions & 3 deletions unittests/optionaltype_regular/test_optionaltype_regular.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
**
****************************************************************************/

#ifndef TESTREGULARAPI_H
#define TESTREGULARAPI_H
#ifndef TEST_OPTIONALTYPE_REGULAR_H
#define TEST_OPTIONALTYPE_REGULAR_H

#include <QObject>
#include "wsdl_test.h"
Expand All @@ -35,4 +35,4 @@ private slots:
private:
};

#endif // TESTREGULARAPI_H
#endif // TEST_OPTIONALTYPE_REGULAR_H

0 comments on commit d05de46

Please sign in to comment.