首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 软件管理 > 软件开发 >

怎么测试私有方法(how to test private method)

2012-07-15 
如何测试私有方法(how to test private method)TODO 更多内容。主要是: http://www.artima.com/suiterunner

如何测试私有方法(how to test private method)
TODO 更多内容。

主要是:

http://www.artima.com/suiterunner/private2.html
java 单元测试,使用反射, 以及一个PrivateMethodAccessor 类。来实现。
缺点是测试代码比较冗长。


http://kailuowang.blogspot.com/2010/08/testing-private-methods-in-rspec.html
http://blog.jayfields.com/2007/11/ruby-testing-private-methods.html
ruby: (rspec), 在每个test之前,将目标方法从 private 改成 public, 之后再改回来。

http://www.ruby-forum.com/topic/78762
好几个人都不赞同测试private method

热点排行