Class documentation of Concepts

Loading...
Searching...
No Matches
bilinearFormAdvectionTest.hh
1/*
2 * bf_advection_test.hh
3 *
4 * Created on: Feb 23, 2017
5 * Author: vinma
6 */
7
8#ifndef HP2DEDGE_TESTSUITE_BILINEARFORMADVECTIONTEST_HH_
9#define HP2DEDGE_TESTSUITE_BILINEARFORMADVECTIONTEST_HH_
10
11#include "basics/testcase.hh"
12#include "basics/typedefs.hh"
14#include "formula/boundary.hh"
15#include "hp2Dedge/space.hh"
16
17namespace test {
18
20 public:
21 virtual ~hp2DedgeAdvectionTest() {}
22 virtual void run();
23
24 void test_strong_advection_equals_weak_advection_for_u_in_FE_space_and_constant_k();
25
26 void test_strong_advection_equals_weak_advection_for_smooth_u_and_smooth_k();
27
28 };
29
30} // namespace test
31
32
33#endif /* HP2DEDGE_TESTSUITE_BILINEARFORMADVECTIONTEST_HH_ */
virtual void run()
Runs the tests. Must be overwritten by the specialization.