是否有任何现有的lua Api单元测试?我一直在寻找一个小时,我找到的就是这个链接 – http://www.inf.puc-rio.br/~roberto/lua/lua5.1-tests.tar.gz 除此之外,有人知道一些测试吗? Unit testing is about tes
除此之外,有人知道一些测试吗?
Unit testing is about testing your code during development, not in production. Typically you start by preparing the testing environment, writing some code that calls production code and check expected results with actual results.
http://lua-users.org/wiki/UnitTesting
希望这可以帮助 :)