The finite element method using deal.II - 2021/2022
poisson_tester.h
Go to the documentation of this file.
1 #ifndef poisson_tester_h
2 #define poisson_tester_h
3 
4 #include <gtest/gtest.h>
5 
6 #include <fstream>
7 
8 #include "poisson.h"
9 
10 using namespace dealii;
11 
12 // Test Fixture for Poisson problem, using integralconstant
13 template <class Integral>
14 class PoissonTester : public ::testing::Test, public Poisson<Integral::value>
15 {
16 public:
17  PoissonTester() = default;
18 };
19 
20 #endif
dealii
poisson.h
PoissonTester
Definition: poisson-tester.cc:10
Poisson
Solve the Poisson problem, with Dirichlet or Neumann boundary conditions, on all geometries that can ...
Definition: poisson.h:55