lua-users home
lua-l archive

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


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