summaryrefslogtreecommitdiff
path: root/gr-blocks/lib/qa_blocks.cc
diff options
context:
space:
mode:
authorTom Rondeau <trondeau@vt.edu>2013-03-08 09:30:23 -0500
committerTom Rondeau <trondeau@vt.edu>2013-03-08 09:30:23 -0500
commit0970c7eaa165c6dc7d70be55dbf3d272b88fc109 (patch)
treeb8f09685720baac3d5d1ab89fed0e9bc13ed9c18 /gr-blocks/lib/qa_blocks.cc
parent27a222ad8dcd245e7b9b4ff51141bdf3d8675a3c (diff)
parent4389b769891283face9aa397bd4d736f478e97e4 (diff)
Merge branch 'master' into next
Diffstat (limited to 'gr-blocks/lib/qa_blocks.cc')
-rw-r--r--gr-blocks/lib/qa_blocks.cc43
1 files changed, 43 insertions, 0 deletions
diff --git a/gr-blocks/lib/qa_blocks.cc b/gr-blocks/lib/qa_blocks.cc
new file mode 100644
index 0000000000..fbae11d264
--- /dev/null
+++ b/gr-blocks/lib/qa_blocks.cc
@@ -0,0 +1,43 @@
+/*
+ * Copyright 2012-2013 Free Software Foundation, Inc.
+ *
+ * This file is part of GNU Radio
+ *
+ * GNU Radio is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 3, or (at your option)
+ * any later version.
+ *
+ * GNU Radio 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 General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with GNU Radio; see the file COPYING. If not, write to
+ * the Free Software Foundation, Inc., 51 Franklin Street,
+ * Boston, MA 02110-1301, USA.
+ */
+
+/*
+ * This class gathers together all the test cases for the gr-blocks
+ * directory into a single test suite. As you create new test cases,
+ * add them here.
+ */
+
+#include <qa_blocks.h>
+#include <qa_fxpt.h>
+#include <qa_fxpt_nco.h>
+#include <qa_fxpt_vco.h>
+
+CppUnit::TestSuite *
+qa_gr_blocks::suite()
+{
+ CppUnit::TestSuite *s = new CppUnit::TestSuite("gr-blocks");
+
+ s->addTest(qa_fxpt::suite());
+ s->addTest(qa_fxpt_nco::suite());
+ s->addTest(qa_fxpt_vco::suite());
+
+ return s;
+}