문제

I am writing a unit test for a function that calls a getter on my object. The getter should return an array, but I get an exception thrown:

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

I mocked my getter with:

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

My getter is defined in the object interface:

function get getterName():Array;

Do I need to rewrite the getter function or my mock statement?

도움이 되었습니까?

해결책

I was mocking the interface of the object instead of and object of the class that implements the interface.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top