tests: Add missing include guards

This commit is contained in:
Sergio Martins
2019-10-11 11:41:31 +01:00
parent a2e610ee4b
commit b20d0f0412
2 changed files with 10 additions and 0 deletions

View File

@@ -21,6 +21,9 @@
// We don't care about performance related checks in the tests
// clazy:excludeall=ctor-missing-parent-argument,missing-qobject-macro,range-loop,missing-typeinfo,detaching-member,function-args-by-ref,non-pod-global-static,reserve-candidates,qstring-allocations
#ifndef KDDOCKWIDGETS_TESTING_H
#define KDDOCKWIDGETS_TESTING_H
#include "KDDockWidgets.h"
#include "Operations.h"
@@ -76,3 +79,5 @@ namespace Testing {
void runTest(const Testing::Test &);
}
}
#endif