You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
notepad-plus-plus/scintilla/test
Don Ho cb7806e94c
[UPDATE] Update Scintilla to 3.3.4
11 years ago
..
examples [UPDATE] Update Scintilla to 3.3.4 11 years ago
unit [UPDATE] Update Scintilla to 3.3.4 11 years ago
MessageNumbers.py
README [UPDATE] Update Scintilla to 3.3.4 11 years ago
ScintillaCallable.py [UPDATE] Update Scintilla to 3.3.4 11 years ago
XiteMenu.py [UPDATE] Update Scintilla to 3.3.4 11 years ago
XiteQt.py [UPDATE] Update Scintilla to 3.3.4 11 years ago
XiteWin.py [UPDATE] Update Scintilla to 3.3.4 11 years ago
lexTests.py [UPDATE] Update Scintilla to 3.3.4 11 years ago
performanceTests.py [UPDATE] Update Scintilla to 3.3.4 11 years ago
simpleTests.py [UPDATE] Update Scintilla to 3.3.4 11 years ago
xite.py

README

The test directory contains some unit and performance tests for Scintilla.

The tests can only be run on Windows or Linux/Qt using Python 2.7 or 3.x.
Python 2.7+ is required because the bytes string type and literals are available.
Scintilla must be built before running any tests.

A test application for Windows only is in xite.py and this can be run to experiment:
pythonw xite.py

To run the basic tests:
python simpleTests.py

There are some lexing tests with simple input files in several languages in the examples 
subdirectory and their expected lexed states in *.styled where the start of each style 
is marked with {styleNumber}, for example:
{15}<%@{16}language=javas{15}%>{0}

To run the lexing tests:
python lexTests.py

To check for performance regressions:
python performanceTests.py
While each test run will be different and the timer has only limited granularity, some results
from a 2 GHz Athlon with a DEBUG build are:
 0.187 testAddLine
. 0.203 testAddLineMiddle
. 0.171 testHuge
. 0.203 testHugeInserts
. 0.312 testHugeReplace
.