aboutsummaryrefslogtreecommitdiffhomepage
path: root/tvmet-1.7.1/testsuite/main.h
diff options
context:
space:
mode:
Diffstat (limited to 'tvmet-1.7.1/testsuite/main.h')
-rw-r--r--tvmet-1.7.1/testsuite/main.h47
1 files changed, 47 insertions, 0 deletions
diff --git a/tvmet-1.7.1/testsuite/main.h b/tvmet-1.7.1/testsuite/main.h
new file mode 100644
index 000000000..9d15ce4e9
--- /dev/null
+++ b/tvmet-1.7.1/testsuite/main.h
@@ -0,0 +1,47 @@
+/* This file is part of Eigen, a C++ template library for linear algebra
+ * Copyright (C) 2007 Benoit Jacob <jacob@math.jussieu.fr>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ */
+#ifndef EIGEN_TESTSUITE_MAIN_H
+#define EIGEN_TESTSUITE_MAIN_H
+
+#include <QtTest/QtTest>
+#include <iostream>
+#include <stdlib.h>
+#include <time.h>
+
+#ifdef TVMET_HAVE_COMPLEX
+#include <complex>
+#endif
+
+#include <tvmet/Vector.h>
+#include <tvmet/Matrix.h>
+
+using namespace tvmet;
+using namespace std;
+
+class TvmetTestSuite : public QObject
+{
+ Q_OBJECT
+
+public:
+ TvmetTestSuite() {};
+
+private slots:
+ void selfTest();
+};
+
+#endif // EIGEN_TESTSUITE_MAIN_H