kakoune/test
Maxime Coste dbcddafbfd Change utf8::to_next/to_previous so that they are more symetrical
The previous implementation could yield different positions when
iterating forward and backward, leading to confusion in boost regex.

This makes an existing problem a bit more visible: iterating with
to_next and with read_codepoint wont behave the same way, as
read_codepoint will put the iterator onto the byte following the
utf8 codepoint, whereas to_next will put it on the next utf8
character start byte, which might be different if the buffer content
is not valid utf8.

Fixes #1195
2017-04-20 16:18:49 +01:00
..
compose test: Fix UTF8 compliant locale detection 2017-02-23 18:46:56 +03:00
highlight/regions Fix tests after addition of the set_cursor UI method 2017-04-12 10:48:52 +01:00
indent Import unit tests from danr/comment-insertion-refix pull request 2017-01-13 00:30:02 +00:00
regression Change utf8::to_next/to_previous so that they are more symetrical 2017-04-20 16:18:49 +01:00
unit test: Remove empty test directories 2017-03-07 19:02:00 +03:00
README.asciidoc add testing framework 2014-06-30 12:22:50 +02:00
run Refactor test run script 2017-02-21 23:26:39 +00:00

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

Regression test
===============

:unified-context-diff: https://en.wikipedia.org/wiki/Diff#Unified_format

Source structure
----------------

----------------------------------------------
.
├── unit
│   └── …
└── compose
    └── …
        ├── cmd          → command
        ├── [in]         → start file
        ├── [out]        → end file
        ├── [selections] → selection contents
        ├── [state]      → selection states
        └── [rc]         → configuration
----------------------------------------------

Usage
-----

To test, just type +run [test]+ in the +test+ directory.
It will print each passing test.  If a test fails, a {unified-context-diff}[unified context diff]
is printed showing the tests expected output and the actual output.