由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - 我不太理解unit testable,有人能解释一下什么是unit testable吗?
相关主题
自动生成unit test的软件推荐?agitar?a MatLab question
谁说做开发没趣味?!问个简单的matrix变换的问题,包子答谢
portable code癌症的攻克也卡在算法上,除非天才码工降临
如果用scrum做sprint plan,怎么确定user story和task?help abt C++
Spark的mllib有bug?如何提取一个executable的所有dependency?
赵策怎么看OOP hell的问题?问个两个.h文件互相include的问题
多少公司用 java guice 这烂玩意?谁能比较一下ant和maven的有点缺点?
How does matlab optimization deal with singular matrix?Vert.x3 says "hello" to NPM users
相关话题的讨论汇总
话题: testable话题: unit话题: 解释一下话题: 不太理话题: db
进入Programming版参与讨论
1 (共1页)
s****y
发帖数: 503
1
谁能解释一下什么是unit testable吗?
N******K
发帖数: 10202
2
同问

【在 s****y 的大作中提到】
: 谁能解释一下什么是unit testable吗?
g*****g
发帖数: 34805
3
If it's not tied to a container, DB, or it can be easily emulated, it's
unittestable.
e.g. you need embedded DB to make dao unit testable.

【在 s****y 的大作中提到】
: 谁能解释一下什么是unit testable吗?
C***y
发帖数: 2546
4
就是要测试的function/class没有hard dependency,所有的dependencies都能mock/
fake,这样写unit test才比较容易

【在 s****y 的大作中提到】
: 谁能解释一下什么是unit testable吗?
N******K
发帖数: 10202
5
没有dependency可能么?
mock fake 也基本不可能

【在 C***y 的大作中提到】
: 就是要测试的function/class没有hard dependency,所有的dependencies都能mock/
: fake,这样写unit test才比较容易

i**i
发帖数: 1500
6
singular pattern 从本质上是 not unit-testable 的. 这就是为什么有人把
singular pattern 列为 anti-pattern.
a****i
发帖数: 1182
7
呵呵

【在 N******K 的大作中提到】
: 没有dependency可能么?
: mock fake 也基本不可能

1 (共1页)
进入Programming版参与讨论
相关主题
Vert.x3 says "hello" to NPM usersSpark的mllib有bug?
Vertx dependency injection 问题赵策怎么看OOP hell的问题?
解释一下吧Re: C语言的前途多少公司用 java guice 这烂玩意?
有人能解释一下这段C++代码吗How does matlab optimization deal with singular matrix?
自动生成unit test的软件推荐?agitar?a MatLab question
谁说做开发没趣味?!问个简单的matrix变换的问题,包子答谢
portable code癌症的攻克也卡在算法上,除非天才码工降临
如果用scrum做sprint plan,怎么确定user story和task?help abt C++
相关话题的讨论汇总
话题: testable话题: unit话题: 解释一下话题: 不太理话题: db