aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/unit/unitTest.cxx
AgeCommit message (Collapse)AuthorFilesLines
2025-01-31Update comment about modules tested.Neil1-17/+11
2023-02-22Remove _CRT_SECURE_NO_DEPRECATE.Neil1-1/+1
Replace [v]sprintf with bounds checked [v]snprintf.
2021-05-24Define C++ version of the Scintilla API in ScintillaTypes.h, ScintillaMessages.hNeil1-1/+1
and ScintillaStructures.h using scoped enumerations. Use these headers instead of Scintilla.h internally. External definitions go in the Scintilla namespace and internal definitio0ns in Scintilla::Internal.
2021-05-09Add @file <filename> comments to follow convention.Neil1-1/+3
Fix incorrect filename comments. Normalize Qt code to use #endif /* X */ insetad of #endif // X.
2021-03-18std::optional is a basic vocabulary type that may be used widely so includeNeil1-0/+1
almost everywhere.
2021-03-18Move assert and debug trace functions into their own header Debugging.h.Neil1-2/+1
PLATFORM_ASSERT is used in data structure headers which led to including graphics and windowing APIs in data structure modules.
2021-03-17Extract geometry and colour definitions from Platform.h into src/Geometry.h.Neil1-0/+1
2021-03-16Convert Platform from a class to a namespace. Does not change callers.Neil1-2/+2
Make Assert, DebugPrintf, and similar noexcept so they can be used in noexcept methods and they don't throw.
2020-11-10Remove WordList from testing as that is now part of Lexilla.Neil1-1/+0
2018-05-31Allow std::unique_ptr to be used more widely.Neil1-0/+1
2018-05-18Add <vector> to files that include Platform.h as likely needed in future.Neil1-0/+1
2018-05-13Include <string_view> in tests in case needed.Neil1-0/+2
2018-03-26Avoid warnings about ignored diagnostic with Clang.Neil1-0/+2
2018-03-24Feature [feature-requests:#1212]. Move Unicode conversions into UniConversion.Zufu Liu1-1/+0
Move Unicode conversion functions UnicodeFromUTF8 and UTF8FromUTF32Character into UniConversion.
2018-03-20Add unit tests for UniCoversion.Neil1-1/+1
2018-03-16Remove line-end white space.Neil1-1/+1
2017-09-11The Scintilla namespace is always active for internal symbols and for the lexerNeil1-0/+2
interfaces ILexer4 and IDocument.
2017-06-10Avoid warnings when compiling unit tests with recent GCC.Neil1-0/+8
2014-12-22Replace function UnicodeFromBytes with UnicodeFromUTF8 as they are exactly theNeil1-0/+1
same. Add unit tests for UnicodeFromUTF8.
2013-11-18Added necessary header.Unknown1-1/+2
2013-11-18Add some tests for CellBuffer.Neil1-1/+10
2013-11-18Add some tests for DecorationList.Neil1-1/+1
2013-11-17Added tests for Decoration.Neil1-1/+1
2013-11-17Switch unit tests to Catch framework.Neil1-6/+3
2011-02-01Added runStyles tests.nyamatongwe1-1/+1
2011-02-01Unit tests for Scintilla data structures.nyamatongwe1-0/+50