From e1a80ffc829931522d167a4243aca68a959b99a6 Mon Sep 17 00:00:00 2001
From: Timo Koch <timo.koch@iws.uni-stuttgart.de>
Date: Tue, 31 Jan 2017 15:57:15 +0100
Subject: [PATCH] [test] Fix tpfa fv geom test

---
 .../cellcentered/tpfa/test_tpfafvgeometry.cc          | 11 +++++++----
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/test/discretization/cellcentered/tpfa/test_tpfafvgeometry.cc b/test/discretization/cellcentered/tpfa/test_tpfafvgeometry.cc
index f92d6c215b..c3ab1a1a1c 100644
--- a/test/discretization/cellcentered/tpfa/test_tpfafvgeometry.cc
+++ b/test/discretization/cellcentered/tpfa/test_tpfafvgeometry.cc
@@ -32,10 +32,6 @@
 #include <dune/grid/common/mcmgmapper.hh>
 
 #include <dumux/implicit/cellcentered/tpfa/properties.hh>
-#include <dumux/discretization/cellcentered/tpfa/globalfvgeometry.hh>
-#include <dumux/discretization/cellcentered/tpfa/fvelementgeometry.hh>
-#include <dumux/discretization/cellcentered/tpfa/subcontrolvolume.hh>
-#include <dumux/discretization/cellcentered/tpfa/subcontrolvolumeface.hh>
 
 namespace Dumux
 {
@@ -50,6 +46,13 @@ public:
 
     const ElementMapper& elementMapper() const
     { return mapper_; }
+
+    template<class Element, class Intersection>
+    bool isInteriorBoundary(const Element& e, const Intersection& i) const
+    { return false; }
+
+    std::vector<unsigned int> getAdditionalDofDependencies(unsigned int index) const
+    { return std::vector<unsigned int>(); }
 private:
     ElementMapper mapper_;
 };
-- 
GitLab