aboutsummaryrefslogtreecommitdiffstats
path: root/tests
Commit message (Collapse)AuthorAgeFilesLines
* Adding a more complex test for QPixmap, QColor, etcLauro Neto2010-03-221-0/+20
|
* Adding QVariant(QPixmap) testLauro Neto2010-03-221-0/+14
|
* Fix QDataStream <</>> QPixmap testLauro Neto2010-03-221-8/+24
|
* Isolate QVariant tests that use pure python objsLauro Neto2010-03-222-48/+120
|
* Fixes QPixmap.loadFromData method and extends QPixmap test cases.Marcelo Lira2010-03-192-1/+15
| | | | | Reviewed by Hugo Parente <hugo.lima@openbossa.org> Reviewed by Bruno Araújo <bruno.araujo@openbossa.org>
* Added test for invalid QStringList conversion.Hugo Lima2010-03-171-0/+6
|
* Remove qtgui_qstring_qkeysequence from test blacklist.Hugo Lima2010-03-171-1/+1
|
* Extends the QKeySequence unit test.Marcelo Lira2010-03-042-8/+30
| | | | | | | The test adds conversions from QString and Python string to a QKeySequence. Reviewed by Hugo Parente <hugo.lima@openbossa.org>
* Adding event filter test for new type discoveryLauro Neto2010-03-041-0/+47
| | | | | Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Reviewer: Anderson Lizardo <anderson.lizardo@openbossa.org>
* Initial QtTest bindingsLauro Neto2010-03-041-0/+28
|
* Updated type system and QString and QPixmap conversions to be extensible.Marcelo Lira2010-03-041-1/+1
| | | | | | | | And removed the QkeySequence test from the black list (the list of tests expected to fail). Reviewed by Hugo Parente <hugo.lima@openbossa.org> Reviewed by Lauro Moura <lauro.neto@openbossa.org>
* Adding QColor == GlobalColor testLauro Neto2010-03-031-0/+7
| | | | | Reviewer: Bruno Araújo <bruno.araujo@openbossa.org> Reviewer: Anderson Lizardo <anderson.lizardo@openbossa.org>
* Adding test for QColor(QRgb)Lauro Neto2010-03-031-0/+14
|
* Initial QtSvg bindingsCarlos Goncalves2010-03-021-0/+34
| | | | | Reviewed by Hugo Parente <hugo.lima@openbossa.org> Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>
* Replace "requires" class decorator with a simple if (for Python 2.5 ↵Anderson Lizardo2010-03-026-231/+184
| | | | | | | compatibility) Reviewed-by: Lauro Moura <lauro.neto@openbossa.org> Reviewed-by: Bruno Araujo <bruno.araujo@openbossa.org>
* Adding blacklist with qkeysequence testLauro Neto2010-02-261-0/+6
| | | | | Reviewer: Hugo Lima <hugo.lima@openbossa.org> Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
* Fix bug #164 - __len__() function missing in QItemSelection.Luciano Wolf2010-02-261-0/+18
| | | | | | Reviewed by Renato Araujo <renato.filho@openbossa.org> Reviewed by Hugo Parente <hugo.lima@openbossa.org> Reviewed by Lauro Moura <lauro.neto@openbossa.org>
* Adds a QStyle test.Marcelo Lira2010-02-251-0/+32
| | | | | | | The new test creates and sets a QStyle for all widgets in an UI hierarchy. One of the widgets, a QFontComboBox, contains a QLineEdit originated in C++, calling setStyle in it must not steal the ownership of the QStyle or else things will break.
* Renamed QStyle test to StandardPixmap.Marcelo Lira2010-02-251-1/+2
|
* Adds unit tests for QGraphicsProxyWidget and for Python type derived from it.Marcelo Lira2010-02-242-0/+62
| | | | Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>
* Adding more tests for QFlags operatorsLauro Neto2010-02-241-2/+31
|
* Enable support for >> and << operators (QtCore.QTextStream).Luciano Wolf2010-02-231-0/+7
| | | | Reviewed by Hugo Parente <hugo.lima@openbossa.org>
* Add tests/qtgui/qtextedit_test.pyAnderson Lizardo2010-02-231-0/+32
|
* Fixed memory leak on callbacks used on signal connection.Renato Filho2010-02-234-6/+18
| | | | | Now using the 'destroyed()' signal the reference is cleaned after source object destroyed.
* Added QPixmap(QVariant).Hugo Lima2010-02-221-2/+8
| | | | Reviewed by Renato Araújo <renato.filho@openbossa.org>
* Adding tests for QChar(Str)Lauro Neto2010-02-221-0/+15
|
* Adding test for QChar(int)Lauro Neto2010-02-221-0/+11
|
* Added a new case to translation unit tests.Marcelo Lira2010-02-201-2/+6
| | | | | | | The new test calls QCoreApplication.translate passing None to an argument that in C++ expects a 'const char*' and accepts a null pointer. Reviewed by Lauro Moura <lauro.neto@openbossa.org>
* Adds a simple unit test for QtGui.QPen instantiation.Marcelo Lira2010-02-201-0/+20
| | | | Reviewed by Lauro Moura <lauro.neto@openbossa.org>
* Support QPoint(QPoint) constructor.Luciano Wolf2010-02-191-0/+21
| | | | Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>
* Replace reserved words at qgraphicsitem_isblocked_test.pyBruno dos Santos de Araujo2010-02-191-2/+2
|
* Use assert() functions in the unit tests for the sake of standardizationBruno dos Santos de Araujo2010-02-192-8/+11
|
* Add unittest for QInputDialog.getXXX() methodsBruno dos Santos de Araujo2010-02-191-0/+25
|
* Add unit test for QGraphicsItem.isBlockedByModalPanel()Bruno dos Santos de Araujo2010-02-191-0/+28
|
* Add unittest for QFontDialogBruno dos Santos de Araujo2010-02-191-0/+22
|
* Adding tests for QFontMetricsLauro Neto2010-02-191-0/+189
| | | | | | Testing in C++ showed no changes in the return value when changing the last two arguments (tabStops and tabArray), so I chose only to check the return value and error checking.
* Fixed the number of dynamic signal to 50, to avoid index error onRenato Filho2010-02-181-0/+18
| | | | | | QMetaObject functions. Reviewed by Hugo Parente <hugo.lima@openbossa.org>
* Add tests/qtgui/qradialgradient_test.pyAnderson Lizardo2010-02-181-0/+29
| | | | | | | Test various combinations of implicit qreal <-> int conversions and QPointF handling. Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>
* Adding QPainter.drawText with QRectF testLauro Neto2010-02-181-3/+13
|
* Improve qpixmap test to support qstring and qsize arguments.Luciano Wolf2010-02-181-2/+8
| | | | Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>
* Adds more reference counting tests for QAbstractTransition class.Marcelo Lira2010-02-181-0/+84
| | | | Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>
* Fixes type system for QAbstractTransition.setTargetState.Marcelo Lira2010-02-171-1/+22
| | | | | And also for QAbstractTransition.targetState method. The test cases for it were expanded.
* Fixes QtGui type system to use 'reference-count' tag setModel methods.Marcelo Lira2010-02-172-37/+75
| | | | | | | | | | | | Various setModel methods where changed from the incorrect parenting tag to the proper 'reference-count' tag. The return value of QAbstractItemView.model() was defined to have 'default' ownership, otherwise the Qt heuristics from the generator would set the returned pointer as a child belonging to the QAbstractItemView instance. The test case for this was expanded and changed to a more meaningful name. Reviewed by Hugo Parente <hugo.lima@openbossa.org>
* Adding qabs_test.pyLauro Neto2010-02-121-0/+20
| | | | Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>
* Adding qcolor.get* testsLauro Neto2010-02-121-0/+49
| | | | Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>
* Adding QSet conversions plus test in qstatemachineLauro Neto2010-02-121-0/+21
| | | | Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>
* Fixing imports and adding test checking classesLauro Neto2010-02-111-1/+15
|
* Add UsesQCoreApplication in state machine testLauro Neto2010-02-111-5/+5
|
* Fixed QMatrix4x4 inject code.Renato Filho2010-02-111-0/+31
| | | | | | | Now QMatrix4x4 constructor supports any PySequence object. Created unit test for QMatrix4x4 injectcode. Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>
* Putting back QFileInfo(QFile) and setFile(QFile)Lauro Neto2010-02-091-0/+17
| | | | Reviewed by Hugo Parente <hugo.lima@openbossa.org>