aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/unit/testSelection.cxx
AgeCommit message (Collapse)AuthorFilesLines
2025-02-23Silence some warnings in test code.rel-5-5-5Neil1-2/+2
2025-02-05Simplify SelectionRange::Intersect and add SelectionRange constructor fromNeil1-0/+32
positions without virtual space. Add unit tests.
2025-02-01Implement serialization of Selection to and from strings.Neil1-0/+112
Requires std::from_chars to be available.
2025-01-31Add default basic constructor and operator!= to SelectionPosition to ease use.Neil1-0/+151
Use default member initializer, constexpr for constructors and equality operators and <, [[nodiscard]] for comparison operators. Add simple unit tests for Selection. Not trying to be exhaustive here, just start the process of adding tests.