summaryrefslogtreecommitdiff
path: root/gr-digital/python/digital/qa_digital.py
blob: 7acfdd518aa2027475652b5a7555bb15b53d2048 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/usr/bin/env python
#
# Copyright 2011 Free Software Foundation, Inc.
#
# This file is part of GNU Radio
#
# SPDX-License-Identifier: GPL-3.0-or-later
#
#


from gnuradio import gr, gr_unittest, digital


class test_digital(gr_unittest.TestCase):

    def setUp(self):
        self.tb = gr.top_block()

    def tearDown(self):
        self.tb = None


if __name__ == '__main__':
    gr_unittest.run(test_digital)