Mercurial > lcfOS
view python/thex.py @ 280:02385f62f250
Rework from str interface to Instruction interface
author | Windel Bouwman |
---|---|
date | Sat, 02 Nov 2013 10:03:26 +0100 |
parents | ca1ea402f6a1 |
children |
line wrap: on
line source
import unittest import hexedit from PyQt4.QtGui import QApplication from PyQt4.QtTest import QTest from PyQt4.QtCore import Qt import sys class HexTest(unittest.TestCase): def setUp(self): self.app = QApplication(sys.argv) self.ui = hexedit.HexEditor() self.bv = self.ui.he.bv # Provide some random data: self.bv.Data = bytearray(range(10)) * 8 + b'x' def tearDown(self): self.app.processEvents() self.app.quit() def testOpenButton(self): QTest.mouseClick(self.bv, Qt.LeftButton) self.assertEqual(self.bv.CursorPosition, 161) QTest.keyClick(self.bv, Qt.Key_Left) self.assertEqual(self.bv.CursorPosition, 160) QTest.keyClick(self.bv, Qt.Key_Up) self.assertEqual(self.bv.CursorPosition, 128) if __name__ == '__main__': unittest.main()