Jasmine Spy 사용하기
발생일: 2013.05.29 문제: Jasmine 으로 테스트 작성 시, Spy 로 쉽게 목 객체를 만들 수 있다고 한다.자세히 알아보자. 해결책: http://pivotal.github.io/jasmine/#section-Spies spyOn(obj, methodName); 으로 특정 객체의 메서드를 목으로 만들 수 있다. spyOn(foo, 'setBar'); expect(foo.setBar).toHaveBeenCalled(); .toHaveBeenCalled();.toHaveBeenCalledWith('foo', 'bar'); foo.setBar.calls; // 호출 정보를 담아둔다. 각 호출의 전달 인자를 배열에 담고 있다..mostRecentCall; // 가장 최근의 호출.mostRecent..
Daylogs/Javascript
2013. 9. 16. 16:44
공지사항