Statistics
| Branch: | Tag: | Revision:

root / gnuradio-core / src / lib / runtime / qa_gr_hier_block2.cc @ 3ff8f7a5

History | View | Annotate | Download (1.8 kB)

1
/* -*- c++ -*- */
2
/*
3
 * Copyright 2006,2008,2009 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
#ifdef HAVE_CONFIG_H
24
#include <config.h>
25
#endif
26
27
#include <qa_gr_hier_block2.h>
28
#include <gr_hier_block2.h>
29
#include <gr_io_signature.h>
30
#include <gr_null_source.h>
31
#include <gr_null_sink.h>
32
33
void qa_gr_hier_block2::test_make()
34
{
35
    gr_hier_block2_sptr src1(gr_make_hier_block2("test",
36
                                                 gr_make_io_signature(1, 1, 1 * sizeof(int)),
37
                                                 gr_make_io_signature(1, 1, 1 * sizeof(int))));
38
39
    CPPUNIT_ASSERT(src1);
40
    CPPUNIT_ASSERT_EQUAL(std::string("test"), src1->name());
41
42
    CPPUNIT_ASSERT_EQUAL(1 * (int) sizeof(int), 
43
                         src1->input_signature()->sizeof_stream_item(0));
44
45
    CPPUNIT_ASSERT_EQUAL(1, src1->input_signature()->min_streams());
46
    CPPUNIT_ASSERT_EQUAL(1, src1->input_signature()->max_streams());
47
48
49
    CPPUNIT_ASSERT_EQUAL(1 * (int) sizeof(int), 
50
                         src1->output_signature()->sizeof_stream_item(0));
51
52
    CPPUNIT_ASSERT_EQUAL(1, src1->output_signature()->min_streams());
53
    CPPUNIT_ASSERT_EQUAL(1, src1->output_signature()->max_streams());
54
55
}
56
57