0

我正在为在我的对象上调用 getter 的函数编写单元测试。getter 应该返回一个数组,但我得到一个异常抛出:

Error: No Expectation defined for Invocation:[FloxyInvocation invocationType=GETTER name="getterName" arguments=[]]

我嘲笑我的吸气剂:

mock(object).getter("getterName").returns(new Array()).once();

我的 getter 在对象接口中定义:

function get getterName():Array;

我是否需要重写 getter 函数或我的模拟语句?

4

1 回答 1

0

我在模拟对象的接口而不是实现接口的类的对象。

于 2014-01-29T14:46:09.937 回答