Skip to content
Snippets Groups Projects
Commit 4fd4cbd0 authored by Oliver Sander's avatar Oliver Sander Committed by sander@PCPOOL.MI.FU-BERLIN.DE
Browse files

print the TargetSpace being tested

[[Imported from SVN: r5736]]
parent 29aaa9f4
No related branches found
No related tags found
No related merge requests found
......@@ -123,6 +123,8 @@ void testDerivative(const std::vector<TargetSpace>& corners)
void testRealTuples()
{
std::cout << " --- Testing RealTuple<1> ---" << std::endl;
typedef RealTuple<1> TargetSpace;
std::vector<TargetSpace> corners = {TargetSpace(1),
......@@ -135,6 +137,8 @@ void testRealTuples()
void testUnitVectors()
{
std::cout << " --- Testing UnitVector<3> ---" << std::endl;
typedef UnitVector<3> TargetSpace;
std::vector<TargetSpace> corners(dim+1);
......@@ -153,6 +157,8 @@ void testUnitVectors()
void testUnitVectors2()
{
std::cout << " --- Testing UnitVector<2> ---" << std::endl;
typedef UnitVector<2> TargetSpace;
std::vector<TargetSpace> corners(dim+1);
......@@ -171,6 +177,8 @@ void testUnitVectors2()
void testRotations()
{
std::cout << " --- Testing Rotation<3> ---" << std::endl;
typedef Rotation<3,double> TargetSpace;
FieldVector<double,3> xAxis(0);
......
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