aboutsummaryrefslogtreecommitdiffhomepage
path: root/test
AgeCommit message (Collapse)AuthorFilesLines
2014-12-22Avoid warning from cppcheck.Neil1-3/+2
2014-12-22Replace function UnicodeFromBytes with UnicodeFromUTF8 as they are exactly theNeil2-0/+45
same. Add unit tests for UnicodeFromUTF8.
2014-08-08Implement explicit tab stops per line.Neil1-0/+74
From Nick Gravgaard.
2014-08-08Remove extra whitespace.Neil1-10/+10
2014-05-24Removing style byte indicators.Neil1-4/+0
2014-05-21Updated to current version of Catch as fixes issues reported by undefinedNeil1-555/+398
behaviour sanitizer.
2014-05-15Don't try to use sanitizers on OS X as not built into Clang.Neil Hodgson1-2/+5
2014-05-15Support Clang on Linux and turn on the address and undefined behaviourNeil1-1/+6
sanitizers.
2014-05-15Update Catch unit testing framework to current build 43 as it avoids someNeil1-1989/+3048
warnings from Clang.
2014-01-14Avoid warnings from cppcheck for testing code.Neil1-0/+2
2014-01-14CallTipSetPosStart API added.Neil1-0/+21
2014-01-01Specify minimum Python version for scripts.Neil1-2/+1
2014-01-01Specify minimum Python version for scripts.Neil3-0/+3
2013-12-22Add tests for style attributes.Neil1-0/+89
2013-12-17Added DropSelectionN API.Neil1-0/+34
2013-11-18Added necessary header.neilh1-1/+2
2013-11-18Add some tests for CellBuffer.Neil4-1/+152
2013-11-18Add some tests for DecorationList.Neil2-1/+45
2013-11-17Added tests for Decoration.Neil4-2/+52
2013-11-17Switch unit tests to Catch framework.Neil13-1022/+8833
2013-09-26Enhance stability by defining GetLineEndPosition for lines beyond end of ↵Neil1-0/+6
document to return document size.
2013-09-21Fix test script to match move of scripts.nyamatongwe1-1/+2
2013-09-05Added SCI_GETPRIMARYSTYLEFROMSTYLE.Neil1-0/+4
2013-09-05Bug [#1520]. Make SCI_GETSTYLEFROMSUBSTYLE work for secondary styles.Neil1-4/+19
2013-09-03Added another test for cpp lexer support for Unicode line ends.Neil1-0/+1
2013-09-03Added GetStyleFromSubStyle.Neil1-0/+32
Tests for this and other sub styles methods.
2013-08-20Added PositionRelative to optimize navigation by character.Neil1-0/+45
2013-07-22Added the character representation feature.Neil1-0/+26
2013-07-22There were occsional failures in clipboard tests so add some DoEvents callsNeil1-0/+2
to allow clipboard status to be propogated between windows. Seems to avoid the failures.
2013-07-11Include case conversion data in Scintilla so that all platforms will performNeil1-40/+30
case conversion of Unicode text in accordance with Unicode.
2013-07-08Fix to work on more versions of Python.Neil1-6/+6
2013-07-07First argument to SetText is not used so was difficult to set a text ↵Neil2-20/+25
containing NUL. Add SetContents to make it easier to setup test cases.
2013-07-07Add tests for searching performance.Neil1-0/+38
2013-07-07When case conversion changes the length of the text, ensure onlyNeil1-0/+35
valid memory accessed and that the converted text is selected.
2013-07-05Implemented tests for Qt on Linux.Neil7-223/+284
2013-07-04Fix bug with use of strings instead of byte strings as thisNeil1-9/+22
caused failures on Linux. Check for platform to allow different default line ends, Russian encodings and folding behaviour.
2013-07-01Fix up reference to scripts directory.Neil1-1/+2
2013-06-29Bug: [#1483]. Added a test for UTF-8 labels in Lua that would fail without fix.Neil3-2/+5
2013-05-10Handle most stringresult methods generically.nyamatongwe2-99/+57
Make compatible with PyPy.
2013-05-08Avoid warning.nyamatongwe1-0/+20
2013-05-05Make test run on older version of Python.nyamatongwe1-1/+1
2013-05-04Added tests for CopyAllowLine, SelectionDuplicate, and LineTranspose.nyamatongwe1-0/+24
2013-04-19Using std::fill instead of a loop is much faster. As much as 4x on a large ↵nyamatongwe4-0/+8
block.
2013-04-15Update tests for last change to RunStyles as it no longer throws in FillRange.nyamatongwe1-5/+1
2013-04-15RunStyles can be corrupted by filling 0 length ranges and ranges that go ↵nyamatongwe1-0/+18
past end so throw std::invalid_argument exceptions for these conditions. Provide a Check method to validate the consistency of a RunStyles and throw std::runtime_error if corruption is detected.
2013-04-14Adding example file extensions to native file setting so tests work.nyamatongwe3-15/+15
2013-04-05Added tests for Ruby and Perl lexers.nyamatongwe5-0/+28
2013-04-05Added test for Lua lexer.nyamatongwe3-2/+20
2013-04-05Made unit test framework code 64-bit compatible.nyamatongwe1-19/+38
2013-02-25Editor: SCI_LINESCROLL: treat columns as signedMook1-1/+9