From: bangerth Date: Wed, 23 Jan 2008 03:20:44 +0000 (+0000) Subject: Tests must include ../tests.h X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=56d8a078250f66fcd50fc007adb0c9265aa7c62b;p=dealii-svn.git Tests must include ../tests.h git-svn-id: https://svn.dealii.org/trunk@15645 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/deal.II/project_boundary_rt_01.cc b/tests/deal.II/project_boundary_rt_01.cc index 44bda3e0db..5296102486 100644 --- a/tests/deal.II/project_boundary_rt_01.cc +++ b/tests/deal.II/project_boundary_rt_01.cc @@ -2,7 +2,7 @@ // $Id$ // Version: $Name$ // -// Copyright (C) 2007 by the deal.II authors +// Copyright (C) 2007, 2008 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -11,6 +11,7 @@ // //---------------------------------------------------------------------- +#include "../tests.h" #include #include #include @@ -25,7 +26,6 @@ #include -using namespace dealii; /** * A vector-valued polynomial for testing RT elements. @@ -186,7 +186,5 @@ int main() FE_RaviartThomasNodal<2> rt23(3); test_hyper_cube(rt23); FE_RaviartThomasNodal<2> rt24(4); - test_hyper_cube(rt24); - - + test_hyper_cube(rt24); }