Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-gdt
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ag-ohlberger
dune-community
dune-gdt
Commits
56091b89
Commit
56091b89
authored
9 years ago
by
Dr. Felix Tobias Schindler
Browse files
Options
Downloads
Patches
Plain Diff
[test.operators_elliptic] add tests for EllipticLocalizableProduct
parent
c3eac542
No related branches found
No related tags found
Loading
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
test/operators_elliptic.cc
+44
-0
44 additions, 0 deletions
test/operators_elliptic.cc
with
44 additions
and
0 deletions
test/operators_elliptic.cc
0 → 100644
+
44
−
0
View file @
56091b89
// 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
();
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment