root / usrp / host / lib / inband / qa_inband.cc @ c3f962a1
History | View | Annotate | Download (1.1 kB)
| 1 | 29c73e79 | eb | /* -*- c++ -*- */
|
|---|---|---|---|
| 2 | 29c73e79 | eb | /*
|
| 3 | 7c9883d7 | eb | * Copyright 2007 Free Software Foundation, Inc. |
| 4 | 29c73e79 | eb | * |
| 5 | 29c73e79 | eb | * This file is part of GNU Radio |
| 6 | 29c73e79 | eb | * |
| 7 | 29c73e79 | eb | * GNU Radio is free software; you can redistribute it and/or modify |
| 8 | 29c73e79 | eb | * it under the terms of the GNU General Public License as published by |
| 9 | 937b719d | eb | * the Free Software Foundation; either version 3, or (at your option) |
| 10 | 29c73e79 | eb | * any later version. |
| 11 | 29c73e79 | eb | * |
| 12 | 29c73e79 | eb | * GNU Radio is distributed in the hope that it will be useful, |
| 13 | 29c73e79 | eb | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | 29c73e79 | eb | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 15 | 29c73e79 | eb | * GNU General Public License for more details. |
| 16 | 29c73e79 | eb | * |
| 17 | 29c73e79 | eb | * You should have received a copy of the GNU General Public License along |
| 18 | 29c73e79 | eb | * with this program; if not, write to the Free Software Foundation, Inc., |
| 19 | 29c73e79 | eb | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
| 20 | 29c73e79 | eb | */ |
| 21 | 29c73e79 | eb | |
| 22 | 0bf2128a | eb | #include <qa_inband.h> |
| 23 | 0bf2128a | eb | #include <qa_inband_packet_prims.h> |
| 24 | 0bf2128a | eb | #include <qa_inband_usrp_server.h> |
| 25 | 29c73e79 | eb | |
| 26 | 0bf2128a | eb | CppUnit::TestSuite * |
| 27 | 0bf2128a | eb | qa_inband::suite() |
| 28 | 29c73e79 | eb | {
|
| 29 | 0bf2128a | eb | CppUnit::TestSuite *s = new CppUnit::TestSuite("inband"); |
| 30 | 7c9883d7 | eb | |
| 31 | 0bf2128a | eb | s->addTest (qa_inband_packet_prims::suite()); |
| 32 | 0bf2128a | eb | s->addTest (qa_inband_usrp_server::suite()); |
| 33 | 29c73e79 | eb | |
| 34 | 0bf2128a | eb | return s;
|
| 35 | 0bf2128a | eb | } |