lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


On Thu, May 11, 2017 at 11:53 PM, Илья Удалов <udalovilia@gmail.com> wrote:
> Hi!
>
> I was looking for unit testing framework with following features:
>
> ordered test execution
> time measuring
> backtrace in failed assertions
> concise and simple API
> colourful cli interface
>
>
> I have not succeeded.
> Thus, I have made small unit test library for myself with colourful cli
> interface (like gtest).
> It has all essential features and it looks pretty good.
> I think you may like it!
>
> GitHub: https://github.com/IUdalov/u-test
> luarocks: luarocks install u-test
>
> —  Ilia
>

Looks good.

I also prefer minimal TAP-style testing tools like cwtest[1] and
tapered[2]. We now have a third option.

[1] https://github.com/catwell/cwtest
[2] https://github.com/telemachus/tapered

Best regards.