Skip to content
Snippets Groups Projects
Commit 56091b89 authored by Dr. Felix Tobias Schindler's avatar Dr. Felix Tobias Schindler
Browse files

[test.operators_elliptic] add tests for EllipticLocalizableProduct

parent c3eac542
No related branches found
No related tags found
Loading
// This file is part of the dune-gdt project:
// http://users.dune-project.org/projects/dune-gdt
// Copyright holders: Felix Schindler
// License: BSD 2-Clause License (http://opensource.org/licenses/BSD-2-Clause)
#define DUNE_STUFF_TEST_MAIN_CATCH_EXCEPTIONS 1
// this one has to come first
#include <dune/stuff/test/main.hxx>
#include "spaces_fv_default.hh"
#include <dune/gdt/tests/operators/elliptic.hh>
using namespace Dune::GDT::Tests;
typedef testing::Types<SPACE_FV_SGRID(1, 1), SPACE_FV_SGRID(2, 1), SPACE_FV_SGRID(3, 1)> ConstantSpaces;
TYPED_TEST_CASE(EllipticLocalizableProductTest, ConstantSpaces);
TYPED_TEST(EllipticLocalizableProductTest, constructible_by_ctor)
{
this->constructible_by_ctor();
}
TYPED_TEST(EllipticLocalizableProductTest, constructible_by_factory)
{
this->constructible_by_factory();
}
TYPED_TEST(EllipticLocalizableProductTest, is_localizable_product)
{
this->is_localizable_product();
}
TYPED_TEST(EllipticLocalizableProductTest, correct_for_constant_arguments)
{
this->correct_for_constant_arguments();
}
TYPED_TEST(EllipticLocalizableProductTest, correct_for_linear_arguments)
{
this->correct_for_linear_arguments();
}
TYPED_TEST(EllipticLocalizableProductTest, correct_for_quadratic_arguments)
{
this->correct_for_quadratic_arguments();
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment