Fixing up GUI windows to better scale with gtgui sinks.
[debian/gnuradio] / usrp / limbo / inband / qa_inband_usrp_server.h
1 /* -*- c++ -*- */
2 /*
3  * Copyright 2007 Free Software Foundation, Inc.
4  * 
5  * This file is part of GNU Radio
6  * 
7  * GNU Radio is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 3, or (at your option)
10  * any later version.
11  * 
12  * GNU Radio is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  * 
17  * You should have received a copy of the GNU General Public License along
18  * with this program; if not, write to the Free Software Foundation, Inc.,
19  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20  */
21
22 #ifndef QA_INBAND_USRP_SERVER_H
23 #define QA_INBAND_USRP_SERVER_H
24
25 #include <cppunit/extensions/HelperMacros.h>
26 #include <cppunit/TestCase.h>
27
28 class qa_inband_usrp_server : public CppUnit::TestCase {
29
30   CPPUNIT_TEST_SUITE(qa_inband_usrp_server);
31   CPPUNIT_TEST(test_open_close);
32   CPPUNIT_TEST(test_chan_allocation);
33   CPPUNIT_TEST(test_chan_deallocation);
34   CPPUNIT_TEST(test_tx);
35   CPPUNIT_TEST(test_rx);
36   CPPUNIT_TEST(test_cs);
37   CPPUNIT_TEST(test_rid);
38   CPPUNIT_TEST_SUITE_END();
39
40  private:
41   void test_chan_allocation();
42   void test_chan_deallocation();
43   void test_open_close();
44   void test_tx();
45   void test_rx();
46   void test_cs();
47   void test_rid();
48 };
49
50 #endif /* INCLUDED_QA_INBAND_USRP_SERVER_H */