The finite element method using deal.II - 2021/2022
poisson_tester.cc File Reference
#include "poisson_tester.h"
#include <gtest/gtest.h>
#include <fstream>
#include <sstream>
Include dependency graph for poisson_tester.cc:

Go to the source code of this file.

Typedefs

using PoissonTestTypes = ::testing::Types< std::integral_constant< int, 2 >, std::integral_constant< int, 3 > >
 
using Poisson2DTester = PoissonTester< std::integral_constant< int, 2 > >
 

Functions

 TYPED_TEST_CASE (PoissonTester, PoissonTestTypes)
 
 TYPED_TEST (PoissonTester, MakeGrid)
 

Typedef Documentation

◆ PoissonTestTypes

using PoissonTestTypes = ::testing::Types<std::integral_constant<int, 2>, std::integral_constant<int, 3> >

Definition at line 11 of file poisson_tester.cc.

◆ Poisson2DTester

using Poisson2DTester = PoissonTester<std::integral_constant<int, 2> >

Definition at line 14 of file poisson_tester.cc.

Function Documentation

◆ TYPED_TEST_CASE()

TYPED_TEST_CASE ( PoissonTester  ,
PoissonTestTypes   
)

◆ TYPED_TEST()

TYPED_TEST ( PoissonTester  ,
MakeGrid   
)

Definition at line 18 of file poisson_tester.cc.

19 {
20  // Output dimension
21  std::cout << "Working on dim " << TypeParam::value << std::endl;
22  this->make_grid();
23 }
value
static constexpr bool const value
make_grid
void make_grid(Triangulation< 2 > &triangulation)
Definition: step-2.cc:41