summaryrefslogtreecommitdiff
path: root/gr-qtgui/src/python/qa_qtgui.py
diff options
context:
space:
mode:
authorTom Rondeau2011-03-26 17:09:00 -0400
committerTom Rondeau2011-03-26 17:09:00 -0400
commite45e25d13c4f0ea8b84143c1a8e1d18dbcc427be (patch)
treed71e5510902aecccace123e243c7a2272ed0f8bb /gr-qtgui/src/python/qa_qtgui.py
parent139a574638714c576f8d4c172d5d8e202ade5e5a (diff)
parent7bad5690d486050fa192e8642bbcbbaa091582a6 (diff)
downloadgnuradio-e45e25d13c4f0ea8b84143c1a8e1d18dbcc427be.tar.gz
gnuradio-e45e25d13c4f0ea8b84143c1a8e1d18dbcc427be.tar.bz2
gnuradio-e45e25d13c4f0ea8b84143c1a8e1d18dbcc427be.zip
Merge branch 'qwt4'
Diffstat (limited to 'gr-qtgui/src/python/qa_qtgui.py')
-rwxr-xr-xgr-qtgui/src/python/qa_qtgui.py46
1 files changed, 46 insertions, 0 deletions
diff --git a/gr-qtgui/src/python/qa_qtgui.py b/gr-qtgui/src/python/qa_qtgui.py
new file mode 100755
index 000000000..fbf0de46e
--- /dev/null
+++ b/gr-qtgui/src/python/qa_qtgui.py
@@ -0,0 +1,46 @@
+#!/usr/bin/env python
+#
+# Copyright 2011 Free Software Foundation, Inc.
+#
+# This file is part of GNU Radio
+#
+# GNU Radio is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 3, or (at your option)
+# any later version.
+#
+# GNU Radio is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with GNU Radio; see the file COPYING. If not, write to
+# the Free Software Foundation, Inc., 51 Franklin Street,
+# Boston, MA 02110-1301, USA.
+#
+
+from gnuradio import gr, gr_unittest
+import qtgui
+from PyQt4 import QtGui, QtCore
+import sys, sip
+
+class test_qtgui(gr_unittest.TestCase):
+
+ def setUp (self):
+ self.tb = gr.top_block ()
+
+ def tearDown (self):
+ self.tb = None
+
+ def test01 (self):
+ pass
+ # Test to make sure we can instantiate these
+ #self.qapp = QtGui.QApplication(sys.argv)
+ #self.qtsnk = qtgui.sink_c(1024, gr.firdes.WIN_BLACKMAN_hARRIS,
+ # 0, 1, "Test",
+ # True, True, False, True, True)
+
+
+if __name__ == '__main__':
+ gr_unittest.run(test_qtgui, "test_qtgui.xml")