aboutsummaryrefslogtreecommitdiffhomepage
path: root/test
AgeCommit message (Collapse)AuthorFilesLines
2012-05-26Add DeleteRange method.nyamatongwe1-0/+7
2012-05-26Add GetRangePointer and GetGapPosition methods.nyamatongwe1-1/+31
2012-04-16Updated tests for bug #3518198.nyamatongwe1-1/+3
2012-03-25Avoid warnings from example code.nyamatongwe2-2/+2
2012-03-25Add test for bug #3509317.nyamatongwe2-0/+8
2012-03-25Fix lexer tests to test subranges correctly.nyamatongwe1-2/+2
2011-10-23Avoid crashing for SCI_MARKERNEXT starting at -1. Bug #3427270.nyamatongwe1-0/+3
2011-09-24Extra test to check MarkerNext optimization.nyamatongwe1-0/+1
2011-07-25Avoid unwanted output.nyamatongwe1-2/+2
2011-07-25Using 'from __future__ import unicode_literals' to make work on Python 2.7.nyamatongwe4-2/+10
2011-06-07Testing RunStyles::AllSame and RunStyles::AllSameAs.nyamatongwe1-0/+18
2011-06-07Add tests for bug found in #3291579 and for new RunStyles::Findnyamatongwe2-0/+119
and ContractionState::HiddenLines methods.
2011-03-27Fix for bug with wrong recognition of number after regex literal. Bug #3209108.nyamatongwe2-0/+2
Added test for this case.
2011-02-13Avoid unnecessary relinks on Windows.nyamatongwe1-2/+4
2011-02-13Added Merge method to SparseState to make it possible to detect significantnyamatongwe1-1/+100
changes in lexers which will require styling beyond the end of the current range.
2011-02-10Only append a state if the value differs from the last current value.nyamatongwe1-0/+7
2011-02-10New class SparseState for storing lexer state that may notnyamatongwe1-0/+138
change on most lines.
2011-02-03Added some coverage testing.nyamatongwe1-1/+5
2011-02-01Added runStyles tests.nyamatongwe1-1/+1
2011-02-01Unit tests for Scintilla data structures.nyamatongwe8-0/+850
2010-09-04Fix for bug #3058924 wrong highlighting for float literals containing +/-.nyamatongwe2-0/+6
Tests added for example numeric literals.
2010-08-04Added test for bug #3038381.nyamatongwe2-0/+8
2010-08-04Added more style setting, using byte strings as that matches API.nyamatongwe1-5/+7
2010-06-18Fix for bug #3017572 FindText crashes with empty textnyamatongwe1-0/+4
Always return start position when search text is empty.
2010-06-05Whitespace.nyamatongwe1-1/+1
2010-03-26Added SCI_GETTAG.nyamatongwe1-5/+9
2010-03-25New case insensitive searching implementation uses objects implementingnyamatongwe1-0/+78
the CaseFolder interface to fold both search text and document text so they can be compared with a simple strcmp. A simple table based folder CaseFolderTable is used for 8 bit encodings and maps input bytes to folded bytes. For multi-byte encodings except for UTF-8 a null (output same as input) CaseFolderTable is used. For UTF-8, more complex subclasses are used which call platform APIs to perform the folding. Folding is approximately to lower case although this differs between platforms.
2010-03-23Upper and lower casing now works on non-ASCII characters.nyamatongwe1-0/+62
2010-02-28Fix for bug #2959876 Regular expression replace cannot escape \\nyamatongwe1-0/+9
2010-01-31Better coverage display.nyamatongwe2-5/+9
2010-01-31Added SCI_SETFIRSTVISIBLELINE to match SCI_GETFIRSTVISIBLELINE.nyamatongwe1-0/+23
2009-10-27Added GetLexerLanguage.nyamatongwe1-0/+19
2009-10-18Autocompletion tests.nyamatongwe1-0/+87
2009-07-22Tests for multiple selection, rectangular selection and virtual space.nyamatongwe1-0/+127
2009-06-16Style numbers changed for D.nyamatongwe1-3/+3
2009-05-27Handles BOM on input files by removing.nyamatongwe3-9/+110
Fixed for UTF-8 input. Added D test.
2009-05-12Added README and increased duration of performance tests for more accuracy.nyamatongwe2-5/+35
2009-05-12Include tests in standard repository.nyamatongwe19-0/+1930