lua unit test introduction】的更多相关文章

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…
cg教程下载: http://cgpeers.com http://cgpersia.com http://bbs.ideasr.com/forum-328-1.html http://bbs.ideasr.com/forum-337-1.html  (杂志&期刊) http://www.rr-sc.com/ http://forum.gfxnews.orghttp://rutracker.org www.9iv.com http://www.ccgtv.cn/     资讯 http://ww…
前言 最初浏览过<JavaScript秘密花园>,前一段时间读过一点点<JavaScript语言精粹>和一点点<JavaScript高级程序设计>(一点点是指都只是读了个开头,有个大概其的印象).最近在Codecademy上,学习JavaScript相关的课程.不得不说,和当初的安利一样,该网站的易读性.可操作性和交互性非常地强——很适合作为一个新人入门的学习.(张嘴吃下我这安利~)准备在一个月内刷完Codecademy上FE相关的课程(JS目前进度80+%),共勉.(…
英语不好翻译很烂.英语好的去看原文. 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…
基于 Cocos2d-x-lua 的游戏开发框架 Dorothy 简介 概述 Dorothy 是一个在 Cocos2d-x-lua 基础上发展起来的分支, 它去掉 Cocos2d-x-lua 那些过多的扩展, 并且做了一定程度的优化, 目前提供了以下4种编辑器: Action Editor: 2D骨骼动画编辑器 Body Editor: 物理编辑器 Effect Editor: 特效编辑器(目前只有粒子系统编辑器) Scene Editor: 场景编辑器(用于组织游戏逻辑) 它支持 Window…
http://exploredegrees.stanford.edu/coursedescriptions/cs/ CS 101. Introduction to Computing Principles. 3-5 Units. Introduces the essential ideas of computing: data representation, algorithms, programming "code", computer hardware, networking, s…
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…
From: http://www.cnblogs.com/wJiang/archive/2010/02/21/1670632.html Moq即Mock You Framework,故名思意是一个类似Mockery,JMock的Mock框架. 是google上的一个.net开源项目 项目扉页 相关下载 http://code.google.com/p/moq/ http://code.google.com/p/moq/downloads/list 先说说一般的使用Mock进行测试的基本过程: M…