UNPKG

@angular-package/testing

Version:

Jasmine unit testing wrapper with additional custom testing features.

1 lines 513 B
import{Expect}from"../expect.class";export class TestingExpectToHaveBeenCalled extends Expect{before(e,t,s){return this.expect(e,s).toHaveBeenCalledBefore(t),this.setNot(!1),this}called(e,t){return this.expect(e,t).toHaveBeenCalled(),this.setNot(!1),this}onceWith(e,...t){return this.expect(e).toHaveBeenCalledOnceWith(...t),this.setNot(!1),this}times(e,t,s){return this.expect(e,s).toHaveBeenCalledTimes(t),this.setNot(!1),this}with(e,...t){return this.expect(e).toHaveBeenCalledWith(...t),this.setNot(!1),this}}