aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/unittest/sqlitestatementtest.cpp
diff options
context:
space:
mode:
authorMarco Bubke <marco.bubke@theqtcompany.com>2015-06-16 12:38:04 +0200
committerMarco Bubke <marco.bubke@theqtcompany.com>2015-06-16 13:53:30 +0000
commit2b84d7611b6c5b9165c1ebda80af38afc9f59771 (patch)
treee11798276bd511bfadd29cd431058dd789bd949c /tests/unit/unittest/sqlitestatementtest.cpp
parent1402c067b1cf9c46c2e38190f243e44138deddbe (diff)
Clang: Reorder includes
Change-Id: I324e88c0d295114390c1fac2745c0d2d47637ece Reviewed-by: Nikolai Kosjar <nikolai.kosjar@theqtcompany.com>
Diffstat (limited to 'tests/unit/unittest/sqlitestatementtest.cpp')
-rw-r--r--tests/unit/unittest/sqlitestatementtest.cpp23
1 files changed, 12 insertions, 11 deletions
diff --git a/tests/unit/unittest/sqlitestatementtest.cpp b/tests/unit/unittest/sqlitestatementtest.cpp
index 5e218168ee..ddecb5d9b1 100644
--- a/tests/unit/unittest/sqlitestatementtest.cpp
+++ b/tests/unit/unittest/sqlitestatementtest.cpp
@@ -28,22 +28,23 @@
**
****************************************************************************/
-#include "gtest/gtest.h"
-#include "gmock/gmock-matchers.h"
-#include "gtest-qt-printing.h"
+#include <sqlitedatabasebackend.h>
+#include <sqlitereadstatement.h>
+#include <sqlitereadwritestatement.h>
+#include <sqlitewritestatement.h>
+#include <utf8string.h>
-#include <QDir>
-#include <QVariant>
-#include <QStringList>
#include <QByteArray>
+#include <QDir>
#include <QMap>
#include <QString>
+#include <QStringList>
+#include <QVariant>
-#include <sqlitereadwritestatement.h>
-#include <sqlitereadstatement.h>
-#include <sqlitewritestatement.h>
-#include <sqlitedatabasebackend.h>
-#include <utf8string.h>
+#include <gmock/gmock.h>
+#include <gmock/gmock-matchers.h>
+#include <gtest/gtest.h>
+#include <gtest-qt-printing.h>
namespace {
class SqliteStatement : public ::testing::Test