diff options
author | Tom Rondeau <tom@trondeau.com> | 2013-08-02 13:30:38 -0400 |
---|---|---|
committer | Tom Rondeau <tom@trondeau.com> | 2013-08-02 13:30:38 -0400 |
commit | f6a1e39fe3fca5b50ea664ad2055e37045ee6bef (patch) | |
tree | e4458278d89d7ba46204d870f18e0e943d0ef484 /gr-qtgui/python/qtgui/qa_qtgui.py | |
parent | 0a5c5d55040f6a6812db2f9c8d62b36838b70a91 (diff) |
qtgui: Added histogram sink.
Diffstat (limited to 'gr-qtgui/python/qtgui/qa_qtgui.py')
-rwxr-xr-x | gr-qtgui/python/qtgui/qa_qtgui.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gr-qtgui/python/qtgui/qa_qtgui.py b/gr-qtgui/python/qtgui/qa_qtgui.py index 51c0727de4..580ca51f22 100755 --- a/gr-qtgui/python/qtgui/qa_qtgui.py +++ b/gr-qtgui/python/qtgui/qa_qtgui.py @@ -77,5 +77,8 @@ class test_qtgui(gr_unittest.TestCase): self.qtsnk = qtgui.time_raster_sink_f(1024, 100, 100.5, [], [], "Test", 1) + def test12(self): + self.qtsnk = qtgui.histogram_sink_f(1024, 100, "Test", 1) + if __name__ == '__main__': gr_unittest.run(test_qtgui, "test_qtgui.xml") |