--- /dev/null
+//---------------------------- fe_collection_02.cc ---------------------------
+// $Id$
+// Version: $Name$
+//
+// Copyright (C) 2005, 2006, 2012 by the deal.II authors
+//
+// This file is subject to QPL and may not be distributed
+// without copyright and license information. Please refer
+// to the file deal.II/doc/license.html for the text and
+// further information on this license.
+//
+//---------------------------- fe_collection_02.cc ---------------------------
+
+
+// test the results of FECollection::n_components()
+
+
+#include "../tests.h"
+#include <deal.II/base/logstream.h>
+#include <deal.II/hp/fe_collection.h>
+#include <deal.II/fe/fe_system.h>
+#include <deal.II/fe/fe_q.h>
+#include <deal.II/fe/fe_raviart_thomas.h>
+
+#include <fstream>
+
+
+template <int dim>
+void test ()
+{
+ // test things with a collection of
+ // primitive elements
+ {
+ hp::FECollection<dim> fe_collection;
+ fe_collection.push_back (FESystem<dim>(FE_Q<dim>(2),dim));
+ fe_collection.push_back (FESystem<dim>(FE_Q<dim>(2),dim));
+ Assert (fe_collection.n_components() == dim,
+ ExcInternalError());
+ }
+
+ // now the same with one of the elements
+ // being non-primitive
+ if (dim > 1)
+ {
+ hp::FECollection<dim> fe_collection;
+ fe_collection.push_back (FESystem<dim>(FE_Q<dim>(2),dim));
+ fe_collection.push_back (FE_RaviartThomas<dim>(1));
+ Assert (fe_collection.n_components() == dim,
+ ExcInternalError());
+ }
+
+ deallog << "OK" << std::endl;
+}
+
+
+
+int main ()
+{
+ std::ofstream logfile("fe_collection_02/output");
+ logfile.precision(2);
+
+ deallog.attach(logfile);
+ deallog.depth_console(0);
+ deallog.threshold_double(1.e-10);
+
+ test<1> ();
+ test<2> ();
+ test<3> ();
+
+ deallog << "OK" << std::endl;
+}