The finite element method using deal.II - 2021/2022
poisson-tester.cc
Go to the documentation of this file.
1 #include <gtest/gtest.h>
2 
3 #include <fstream>
4 
5 #include "poisson.h"
6 
7 using namespace dealii;
8 
9 // Test Fixture for Poisson problem
10 class PoissonTester : public ::testing::Test, public Poisson
11 {
12 public:
13  PoissonTester() = default;
14 };
15 
16 
18 {
19  make_grid();
20 }
dealii
TEST_F
TEST_F(PoissonTester, MakeGrid)
Definition: poisson-tester.cc:17
make_grid
void make_grid(Triangulation< 2 > &triangulation)
Definition: step-2.cc:41
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