summaryrefslogtreecommitdiff
path: root/gr-qtgui/python/qa_qtgui.py
diff options
context:
space:
mode:
Diffstat (limited to 'gr-qtgui/python/qa_qtgui.py')
-rwxr-xr-xgr-qtgui/python/qa_qtgui.py56
1 files changed, 45 insertions, 11 deletions
diff --git a/gr-qtgui/python/qa_qtgui.py b/gr-qtgui/python/qa_qtgui.py
index 562706701a..0761ed3be9 100755
--- a/gr-qtgui/python/qa_qtgui.py
+++ b/gr-qtgui/python/qa_qtgui.py
@@ -21,7 +21,7 @@
#
from gnuradio import gr, gr_unittest
-import qtgui_swig
+import qtgui_swig as qtgui
class test_qtgui(gr_unittest.TestCase):
@@ -31,18 +31,52 @@ class test_qtgui(gr_unittest.TestCase):
def tearDown (self):
self.tb = None
- def test01 (self):
- # Test to make sure we can instantiate the sink
- self.qtsnk = qtgui_swig.sink_c(1024, gr.firdes.WIN_BLACKMAN_hARRIS,
- 0, 1, "Test",
- True, True, True, True)
+ # Tests to make sure we can instantiate the sink.
+ # We use '5' in place of filter.firdes.WIN_BLACKMAN_hARRIS so we
+ # don't have to worry about importing filter just for this one
+ # constant.
+ def test01(self):
+ self.qtsnk = qtgui.sink_c(1024, 5,
+ 0, 1, "Test",
+ True, True, True, True)
- def test02 (self):
- # Test to make sure we can instantiate the sink
- self.qtsnk = qtgui_swig.sink_f(1024, gr.firdes.WIN_BLACKMAN_hARRIS,
- 0, 1, "Test",
- True, True, True, True)
+ def test02(self):
+ self.qtsnk = qtgui.sink_f(1024, 5,
+ 0, 1, "Test",
+ True, True, True, True)
+ def test03(self):
+ self.qtsnk = qtgui.time_sink_c(1024, 1, "Test", 1)
+
+ def test04(self):
+ self.qtsnk = qtgui.time_sink_f(1024, 1, "Test", 1)
+
+ def test05(self):
+ self.qtsnk = qtgui.freq_sink_c(1024, 5,
+ 0, 1, "Test", 1)
+
+ def test06(self):
+ self.qtsnk = qtgui.freq_sink_f(1024, 5,
+ 0, 1, "Test", 1)
+
+ def test07(self):
+ self.qtsnk = qtgui.waterfall_sink_c(1024, 5,
+ 0, 1, "Test")
+
+ def test08(self):
+ self.qtsnk = qtgui.waterfall_sink_f(1024, 5,
+ 0, 1, "Test")
+
+ def test09(self):
+ self.qtsnk = qtgui.const_sink_c(1024, "Test", 1)
+
+ def test10(self):
+ self.qtsnk = qtgui.time_raster_sink_b(1024, 100, 100.5,
+ [], [], "Test", 1)
+
+ def test11(self):
+ self.qtsnk = qtgui.time_raster_sink_f(1024, 100, 100.5,
+ [], [], "Test", 1)
if __name__ == '__main__':
gr_unittest.run(test_qtgui, "test_qtgui.xml")