summaryrefslogtreecommitdiffstats
path: root/tests/auto/qscriptvalue/testgen/gen.py
Commit message (Collapse)AuthorAgeFilesLines
* Update license headers to release version.Jason McDonald2010-10-181-26/+26
|
* Fix license template.Jedrzej Nowacki2010-02-241-2/+1
| | | | | | Fix license template inside the qscriptvalue autotest generator. Reviewed-by: TrustMe
* Fix an unhandled exception in QScriptValue's test generator.Jedrzej Nowacki2010-02-101-1/+1
| | | | | | | | | $QT_END_LICENSE was interpreted as a template key by Template() object, causing substitute() call to throw a KeyError exception. The bug was introduced in 9962e2d96a212c518054220167eb6f61e1052bcc. Reviewed-by: TrustMe
* Autotest: to be sure, generate .cpp files with the proper headers tooThiago Macieira2010-02-031-17/+40
|
* Fix license headers on these new files (and the generator).Thiago Macieira2010-02-021-14/+30
|
* Introduce of QScriptValue autotest generator.Jedrzej Nowacki2010-02-021-0/+203
The patch contain the QScriptValue autotest suite generator. Based on an input it can generate expected tests results and simple tests cases. The results are kept inside generated autotest implementation file (cpp), which could be included by main test file (tst_qscriptvalue.cpp). Generator gives great coverage for isXXX, toXXX, comparison methods. The generator should be used manually and it is not compiled by default. Reviewed-by: Kent Hansen