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
17
TEST_F
(
PoissonTester
, MakeGrid)
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
labs
lab-04
tests
poisson-tester.cc
Generated on Thu Jun 23 2022 07:19:45 for The finite element method using deal.II - 2021/2022 by
1.8.17