Commit 34a23478 authored by Jakub Klinkovský's avatar Jakub Klinkovský
Browse files

Fixed includes of gtest headers

parent bd8e72d1
Loading
Loading
Loading
Loading
+0 −4
Original line number Diff line number Diff line
#ifdef HAVE_GTEST 
#include "gtest/gtest.h"
#endif

#include "BoundaryTagsTest.h"

int main( int argc, char* argv[] )
+2 −0
Original line number Diff line number Diff line
#pragma once

#ifdef HAVE_GTEST
#include <gtest/gtest.h>

#include <sstream>
#include <vector>

+0 −4
Original line number Diff line number Diff line
#ifdef HAVE_GTEST 
#include "gtest/gtest.h"
#endif

#include "MeshEntityTest.h"

int main( int argc, char* argv[] )
+2 −0
Original line number Diff line number Diff line
#pragma once

#ifdef HAVE_GTEST
#include <gtest/gtest.h>

#include <TNL/Meshes/MeshEntity.h>
#include <TNL/Meshes/MeshConfigBase.h>
#include <TNL/Meshes/Topologies/MeshVertexTopology.h>
+1 −1
Original line number Diff line number Diff line
@@ -7,7 +7,7 @@ using Device = Devices::Host;
using LocalIndexType = short;

#ifdef HAVE_GTEST 
#include "gtest/gtest.h"
#include <gtest/gtest.h>

TEST( MultimapTest, TestTypedefs )
{
Loading