Unit Test 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…
These are the contents of my training session about unit testing, and also have some introductions about how could we write better unit tests with NSubstitute framework. The related sessions: Unit Testing with NSubstitute Building the Testing Pipelin…
Luadoc http://keplerproject.github.io/luadoc/ Overview LuaDoc is a documentation generator tool for Lua source code. It parses the declarations and documentation comments in a set of Lua source files and produces a set of XHTML pages describing the c…
英语不好翻译很烂.英语好的去看原文. About the Author I am a software architect/developer/programmer.I have a rather pragmatic approach towards programming, but I have realized that it takes a lot of discipline to be agile. I try to practice good craftsmanship and mak…
Levels of Testing- Acceptance- Performance- Functional- Integration- Unit Why Unit Testing- Feedback Cycles- Usage Model- Eailier Bug Detection- Refactoring Test Driven Development (TDD)`Write the tests before writing the code (incrementally)- Better…