Imported Upstream version 3.2.2
[debian/gnuradio] / pmt / src / lib / qa_pmt_unv.h
1 /* -*- c++ -*- */
2 /*
3  * Copyright 2006 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
18  * along with GNU Radio; see the file COPYING.  If not, write to
19  * the Free Software Foundation, Inc., 51 Franklin Street,
20  * Boston, MA 02110-1301, USA.
21  */
22
23 #ifndef INCLUDED_QA_PMT_UNV_H
24 #define INCLUDED_QA_PMT_UNV_H
25
26 #include <cppunit/extensions/HelperMacros.h>
27 #include <cppunit/TestCase.h>
28
29 class qa_pmt_unv : public CppUnit::TestCase {
30
31   CPPUNIT_TEST_SUITE(qa_pmt_unv);
32   CPPUNIT_TEST(test_u8vector);
33   CPPUNIT_TEST(test_s8vector);
34   CPPUNIT_TEST(test_u16vector);
35   CPPUNIT_TEST(test_s16vector);
36   CPPUNIT_TEST(test_u32vector);
37   CPPUNIT_TEST(test_s32vector);
38   CPPUNIT_TEST(test_u64vector);
39   CPPUNIT_TEST(test_s64vector);
40   CPPUNIT_TEST(test_f32vector);
41   CPPUNIT_TEST(test_f64vector);
42   CPPUNIT_TEST(test_c32vector);
43   CPPUNIT_TEST(test_c64vector);
44   CPPUNIT_TEST_SUITE_END();
45
46  private:
47   void test_u8vector();
48   void test_s8vector();
49   void test_u16vector();
50   void test_s16vector();
51   void test_u32vector();
52   void test_s32vector();
53   void test_u64vector();
54   void test_s64vector();
55   void test_f32vector();
56   void test_f64vector();
57   void test_c32vector();
58   void test_c64vector();
59 };
60
61 #endif