Details
-
Bug
-
Status: Resolved
-
Minor
-
Resolution: Fixed
-
None
-
None
-
None
-
Mesosphere Sprint 22
-
1
Description
We currently have an inconsistent (and mostly incorrect) include order for <gmock/gmock.h> and <gtest/gtest.h> (see below). Some files include them (incorrectly) between the c and cpp standard header, while other correclt include them afterwards. According to the Google Styleguide the second include order is correct.
external_containerizer_test.cpp
#include <unistd.h> #include <gmock/gmock.h> #include <string>
launcher.hpp
#include <vector> #include <gmock/gmock.h>