模拟一个getter而不是使用Mockolate返回一个数组

时间:2014-01-29 14:10:05

标签: actionscript-3 unit-testing mockolate

我正在为一个在我的对象上调用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函数或模拟语句?

1 个答案:

答案 0 :(得分:0)

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