我有一堂课,我有一个对象。我正在测试一个调用该对象的方法,但该对象与我的测试无关,所以我想忽略它。
Class TestedClass {
ObjectX obj;
method() {
/* some processing */
obj.someMethod().otherMethod(lotofparameters); /* i want to ignore this line in my test */
}
}
所以我想在method()
不使用参数调用这些方法的情况下进行测试obj
。
感谢你