forked from DefinitelyTyped/DefinitelyTyped
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jsmockito.d.ts
715 lines (670 loc) · 22.9 KB
/
jsmockito.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
// Type definitions for JsMockito 1.0.4
// Project: http://github.com/chrisleishman/jsmockito
// Definitions by: Karl Bennett <https://github.com/shiver-me-timbers>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
/**
* Top-level module for the JsMockito mocking library.
*
* @author Karl Bennett
*/
/**
* <h2>Contents</h2>
*
* <ol>
* <li><a href="#1">Let's verify some behaviour!</a></li>
* <li><a href="#2">How about some stubbing?</a></li>
* <li><a href="#3">Matching Arguments</a></li>
* <li><a href="#4">Verifying exact number of invocations / at least once /
* never</a></li>
* <li><a href="#5">Matching the context ('this')</a></li>
* <li><a href="#6">Making sure interactions never happened on a mock</a></li>
* <li><a href="#7">Finding redundant invocations</a></li>
* </ol>
*
* <p>In the following examples object mocking is done with Array as this is
* well understood, although you probably wouldn't mock this in normal test
* development.</p>
*
* <h2><a name="1">1. Let's verify some behaviour!</a></h2>
*
* <p>For an object:</p>
* <pre>
* //mock creation
* var mockedArray = mock(Array);
*
* //using mock object
* mockedArray.push("one");
* mockedArray.reverse();
*
* //verification
* verify(mockedArray).push("one");
* verify(mockedArray).reverse();
* </pre>
*
* <p>For a function:</p>
* <pre>
* //mock creation
* var mockedFunc = mockFunction();
*
* //using mock function
* mockedFunc('hello world');
* mockedFunc.call(this, 'foobar');
* mockedFunc.apply(this, [ 'barfoo' ]);
*
* //verification
* verify(mockedFunc)('hello world');
* verify(mockedFunc)('foobar');
* verify(mockedFunc)('barfoo');
* </pre>
*
* <p>Once created a mock will remember all interactions. Then you selectively
* verify whatever interactions you are interested in.</p>
*
* <h2><a name="2">2. How about some stubbing?</a></h2>
*
* <p>For an object:</p>
* <pre>
* var mockedArray = mock(Array);
*
* //stubbing
* when(mockedArray).slice(0).thenReturn('f');
* when(mockedArray).slice(1).thenThrow('An exception');
* when(mockedArray).slice(2).then(function() { return 1+2 });
*
* //the following returns "f"
* assertThat(mockedArray.slice(0), equalTo('f'));
*
* //the following throws exception 'An exception'
* var ex = undefined;
* try {
* mockedArray.slice(1);
* } catch (e) {
* ex = e;
* }
* assertThat(ex, equalTo('An exception');
*
* //the following invokes the stub method, which returns 3
* assertThat(mockedArray.slice(2), equalTo(3));
*
* //the following returns undefined as slice(999) was not stubbed
* assertThat(mockedArray.slice(999), typeOf('undefined'));
*
* //stubs can take multiple values to return in order (same for 'thenThrow' and 'then' as well)
* when(mockedArray).pop().thenReturn('a', 'b', 'c');
* assertThat(mockedArray.pop(), equalTo('a'));
* assertThat(mockedArray.pop(), equalTo('b'));
* assertThat(mockedArray.pop(), equalTo('c'));
* assertThat(mockedArray.pop(), equalTo('c'));
*
* //stubs can also be chained to return values in order
* when(mockedArray).unshift().thenReturn('a').thenReturn('b').then(function() { return 'c' });
* assertThat(mockedArray.unshift(), equalTo('a'));
* assertThat(mockedArray.unshift(), equalTo('b'));
* assertThat(mockedArray.unshift(), equalTo('c'));
* assertThat(mockedArray.unshift(), equalTo('c'));
*
* //stub matching can overlap, allowing for specific cases and defaults
* when(mockedArray).slice(3).thenReturn('abcde');
* when(mockedArray).slice(3, lessThan(0)).thenReturn('edcba');
* assertThat(mockedArray.slice(3, -1), equalTo('edcba'));
* assertThat(mockedArray.slice(3, 1), equalTo('abcde'));
* assertThat(mockedArray.slice(3), equalTo('abcde'));
*
* //can also verify a stubbed invocation, although this is usually redundant
* verify(mockedArray).slice(0);
* </pre>
*
* <p>For a function:</p>
* <pre>
* var mockedFunc = mockFunction();
*
* //stubbing
* when(mockedFunc)(0).thenReturn('f');
* when(mockedFunc)(1).thenThrow('An exception');
* when(mockedFunc)(2).then(function() { return 1+2 });
*
* //the following returns "f"
* assertThat(mockedFunc(0), equalTo('f'))
*
* //following throws exception 'An exception'
* mockedFunc(1);
* //the following throws exception 'An exception'
* var ex = undefined;
* try {
* mockedFunc(1);
* } catch (e) {
* ex = e;
* }
* assertThat(ex, equalTo('An exception');
*
* //the following invokes the stub method, which returns 3
* assertThat(mockedFunc(2), equalTo(3));
*
* //following returns undefined as mockedFunc(999) was not stubbed
* assertThat(mockedFunc(999), typeOf('undefined'));
*
* //stubs can take multiple values to return in order (same for 'thenThrow' and 'then' as well)
* when(mockedFunc)(3).thenReturn('a', 'b', 'c');
* assertThat(mockedFunc(3), equalTo('a'));
* assertThat(mockedFunc(3), equalTo('b'));
* assertThat(mockedFunc(3), equalTo('c'));
* assertThat(mockedFunc(3), equalTo('c'));
*
* //stubs can also be chained to return values in order
* when(mockedFunc)(4).thenReturn('a').thenReturn('b').then(function() { return 'c' });
* assertThat(mockedFunc(4), equalTo('a'));
* assertThat(mockedFunc(4), equalTo('b'));
* assertThat(mockedFunc(4), equalTo('c'));
* assertThat(mockedFunc(4), equalTo('c'));
*
* //stub matching can overlap, allowing for specific cases and defaults
* when(mockedFunc)(5).thenReturn('abcde')
* when(mockedFunc)(5, lessThan(0)).thenReturn('edcba')
* assertThat(mockedFunc(5, -1), equalTo('edcba'))
* assertThat(mockedFunc(5, 1), equalTo('abcde'))
* assertThat(mockedFunc(5), equalTo('abcde'))
*
* //can also verify a stubbed invocation, although this is usually redundant
* verify(mockedFunc)(0);
* </pre>
*
* <ul>
* <li>By default mocks return undefined from all invocations;</li>
* <li>Stubs can be overwritten;</li>
* <li>Once stubbed, the method will always return the stubbed value regardless
* of how many times it is called;</li>
* <li>Last stubbing is more important - when you stubbed the same method with
* the same (or overlapping) matchers many times.</li>
* </ul>
*
* <h2><a name="3">3. Matching Arguments</a></h2>
*
* <p>JsMockito verifies arguments using
* <a href="http://jshamcrest.destaquenet.com/">JsHamcrest</a> matchers.
*
* <pre>
* var mockedArray = mock(Array);
* var mockedFunc = mockFunction();
*
* //stubbing using JsHamcrest
* when(mockedArray).slice(lessThan(10)).thenReturn('f');
* when(mockedFunc)(containsString('world')).thenReturn('foobar');
*
* //following returns "f"
* mockedArray.slice(5);
*
* //following returns "foobar"
* mockedFunc('hello world');
*
* //you can also use matchers in verification
* verify(mockedArray).slice(greaterThan(4));
* verify(mockedFunc)(equalTo('hello world'));
*
* //if not specified then the matcher is anything(), thus either of these
* //will match an invocation with a single argument
* verify(mockedFunc)();
* verify(mockedFunc)(anything());
* </pre>
*
* <ul>
* <li>If the argument provided during verification/stubbing is not a
* JsHamcrest matcher, then 'equalTo(arg)' is used instead;</li>
* <li>Where a function/method was invoked with an argument, but the stub or
* verification does not provide a matcher, then anything() is assumed;</li>
* <li>The reverse, however, is not true - the anything() matcher will
* <em>not</em> match an argument that was never provided.</li>
* </ul>
*
* <h2><a name="4">4. Verifying exact number of invocations / at least once /
* never</a></h2>
*
* <pre>
* var mockedArray = mock(Array);
* var mockedFunc = mockFunction();
*
* mockedArray.slice(5);
* mockedArray.slice(6);
* mockedFunc('a');
* mockedFunc('b');
*
* //verification of multiple matching invocations
* verify(mockedArray, times(2)).slice(anything());
* verify(mockedFunc, times(2))(anything());
*
* //the default is times(1), making these are equivalent
* verify(mockedArray, times(1)).slice(5);
* verify(mockedArray).slice(5);
* </pre>
*
* <h2><a name="5">5. Matching the context ('this')</a></h2>
*
* Functions can be invoked with a specific context, using the 'call' or
* 'apply' methods. JsMockito mock functions (and mock object methods)
* will remember this context and verification/stubbing can match on it.
*
* <p>For a function:</p>
* <pre>
* var mockedFunc = mockFunction();
* var context1 = {};
* var context2 = {};
*
* when(mockedFunc).call(equalTo(context2), anything()).thenReturn('hello');
*
* mockedFunc.call(context1, 'foo');
* //the following returns 'hello'
* mockedFunc.apply(context2, [ 'bar' ]);
*
* verify(mockedFunc).apply(context1, [ 'foo' ]);
* verify(mockedFunc).call(context2, 'bar');
* </pre>
*
* <p>For object method invocations, the context is usually the object itself.
* But sometimes people do strange things, and you need to test it - so
* the same approach can be used for an object:</p>
* <pre>
* var mockedArray = mock(Array);
* var otherContext = {};
*
* when(mockedArray).slice.call(otherContext, 5).thenReturn('h');
*
* //the following returns 'h'
* mockedArray.slice.apply(otherContext, [ 5 ]);
*
* verify(mockedArray).slice.call(equalTo(otherContext), 5);
* </pre>
*
* <ul>
* <li>For mock functions, the default context matcher is anything();</li>
* <li>For mock object methods, the default context matcher is
* sameAs(mockObj).</li>
* </ul>
*
* <h2><a name="6">6. Making sure interactions never happened on a mock</a></h2>
*
* <pre>
* var mockOne = mock(Array);
* var mockTwo = mock(Array);
* var mockThree = mockFunction();
*
* //only mockOne is interacted with
* mockOne.push(5);
*
* //verify a method was never called
* verify(mockOne, never()).unshift('a');
*
* //verify that other mocks were not interacted with
* verifyZeroInteractions(mockTwo, mockThree);
* </pre>
*
* <h2><a name="7">7. Finding redundant invocations</a></h2>
*
* <pre>
* var mockArray = mock(Array);
*
* mockArray.push(5);
* mockArray.push(8);
*
* verify(mockArray).push(5);
*
* // following verification will fail
* verifyNoMoreInteractions(mockArray);
* </pre>
*/
declare namespace JsMockito {
/**
* Library version.
*/
export var version: string;
/**
* Builder for a textual description.
*/
export class JsMockitoStubBuilder {
/**
* Provide functions to be run in place of the mocked method.
*
* @param func Functions to be run in order of execution.
* @return {JsMockitoStubBuilder} Itself for method chaining
*/
then(...func: ((obj: any) => any)[]): JsMockitoStubBuilder;
/**
* Provide values to be returned by the mocked function.
*
* @param obj Values to be returned in order of execution.
* @return {JsMockitoStubBuilder} Itself for method chaining
*/
thenReturn(...obj: any[]): JsMockitoStubBuilder;
/**
* Provide exceptions to be thrown by the mocked function.
*
* @param obj Exceptions to be thrown in order of execution.
* @return {JsMockitoStubBuilder} Itself for method chaining
*/
thenThrow(...obj: Error[]): JsMockitoStubBuilder;
}
/**
* Used to verify how many times a function of method is called.
*/
export interface Verifier {
}
/**
* Test if a given variable is a mock
*
* @param maybeMock An object
* @return {boolean} true if the variable is a mock
*/
export function isMock(maybeMock: any): boolean;
/**
* Add a stub for a mock object method or mock function
*
* @param mock A mock object or mock anonymous function
* @return {T} A stub builder on which the method or function to be stubbed can be invoked
*/
export function when<T>(mock: T): T;
/**
* Verify that a mock object method or mock function was invoked
*
* @param mock A mock object or mock anonymous function
* @param verifier Optional JsMockito.Verifier instance (default: JsMockito.Verifiers.once())
* @return {T} A verifier on which the method or function to be verified can be invoked
*/
export function verify<T>(mock: T): T;
export function verify<T>(mock: T, verifier: Verifier): T;
/**
* Verify that no mock object methods or the mock function were ever invoked
*
* @param mock A mock object or mock anonymous function (multiple accepted)
*/
export function verifyZeroInteractions(...mock: any[]): void;
/**
* Verify that no mock object method or mock function invocations remain
* unverified
*
* @param mock A mock object or mock anonymous function (multiple accepted)
*/
export function verifyNoMoreInteractions(...mock: any[]): void;
/**
* Create a mock that proxies a real function or object. All un-stubbed
* invocations will be passed through to the real implementation, but can
* still be verified.
*
* @param delegate A 'real' (concrete) object or function that the mock will delegate unstubbed invocations to
* @return {T} A mock object (as per mock) or mock function (as per mockFunction)
*/
export function spy<T>(delegate: T): T;
/**
* Create a mockable and stubbable anonymous function.
*
* <p>Once created, the function can be invoked and will return undefined for
* any interactions that do not match stub declarations.</p>
*
* <pre>
* var mockFunc = JsMockito.mockFunction();
* JsMockito.when(mockFunc).call(anything(), 1, 5).thenReturn(6);
* mockFunc(1, 5); // result is 6
* JsMockito.verify(mockFunc)(1, greaterThan(2));
* </pre>
*
* @param funcName The name of the mock function to use in messages (defaults to 'func')
* @param delegate The function to delegate unstubbed calls to (optional)
* @return {T} an anonymous function
*/
export function mockFunction(): Function;
export function mockFunction(funcName: string): Function;
export function mockFunction(funcName: string, delegate: Function): Function;
/**
* Create a mockable and stubbable objects.
*
* <p>A mock is created with the constructor for an object as an argument.
* Once created, the mock object will have all the same methods as the source
* object which, when invoked, will return undefined by default.</p>
*
* <p>Stub declarations may then be made for these methods to have them return
* useful values or perform actions when invoked.</p>
*
* <pre>
* MyObject = function() {
* this.add = function(a, b) { return a + b }
* };
*
* var mockObj = JsMockito.mock(MyObject);
* mockObj.add(5, 4); // result is undefined
*
* JsMockito.when(mockFunc).add(1, 2).thenReturn(6);
* mockObj.add(1, 2); // result is 6
*
* JsMockito.verify(mockObj).add(1, greaterThan(2)); // ok
* JsMockito.verify(mockObj).add(1, equalTo(2)); // ok
* JsMockito.verify(mockObj).add(1, 4); // will throw an exception
* </pre>
*
* @param Obj {function} the constructor for the object to be mocked
* @return {object} a mock object
*/
export function mock<T>(Obj: { new(): T ;}): T;
namespace Verifiers {
/**
* Test that a invocation never occurred. For example:
* <pre>
* verify(mock, never()).method();
* </pre>
* @see JsMockito.Verifiers.times(0)
*/
export function never(): Verifier;
/** Test that no interaction were made on the mock. For example:
* <pre>
* verify(mock, zeroInteractions());
* </pre>
* @see JsMockito.verifyZeroInteractions()
*/
export function zeroInteractions(): Verifier;
/** Test that no further interactions remain unverified on the mock. For
* example:
* <pre>
* verify(mock, noMoreInteractions());
* </pre>
* @see JsMockito.verifyNoMoreInteractions()
*/
export function noMoreInteractions(): Verifier;
/**
* Test that an invocation occurred a specific number of times. For example:
* <pre>
* verify(mock, times(2)).method();
* </pre>
*
* @param wanted The number of desired invocations
*/
export function times(wanted: number): Verifier;
/**
* Test that an invocation occurred exactly once. For example:
* <pre>
* verify(mock, once()).method();
* </pre>
* This is the default verifier.
* @see JsMockito.Verifiers.times(1)
*/
export function once(): Verifier;
}
namespace Integration {
/**
* Import the public JsMockito API into the specified object (namespace)
*
* @param {object} target An object (namespace) that will be populated with
* the functions from the public JsMockito API
*/
export function importTo(target: any): void;
/**
* Make the public JsMockito API available in Screw.Unit
* @see JsMockito.Integration.importTo(Screw.Matchers)
*/
export function screwunit(): void;
/**
* Make the public JsMockito API available to JsTestDriver
* @see JsMockito.Integration.importTo(window)
*/
export function JsTestDriver(): void;
/**
* Make the public JsMockito API available to JsUnitTest
* @see JsMockito.Integration.importTo(JsUnitTest.Unit.Testcase.prototype)
*/
export function JsUnitTest(): void;
/**
* Make the public JsMockito API available to YUITest
* @see JsMockito.Integration.importTo(window)
*/
export function YUITest(): void;
/**
* Make the public JsMockito API available to QUnit
* @see JsMockito.Integration.importTo(window)
*/
export function QUnit(): void;
/**
* Make the public JsMockito API available to jsUnity
* @see JsMockito.Integration.importTo(jsUnity.env.defaultScope)
*/
export function jsUnity(): void;
/**
* Make the public JsMockito API available to jSpec
* @see JsMockito.Integration.importTo(jSpec.defaultContext)
*/
export function jSpec(): void;
}
}
//
// Functions that are copied by JsMockito.Integration.importTo() to the global scope are repeated here.
//
/**
* Test if a given variable is a mock
*
* @param maybeMock An object
* @return {boolean} true if the variable is a mock
*/
declare function isMock(maybeMock: any): boolean;
/**
* Add a stub for a mock object method or mock function
*
* @param mock A mock object or mock anonymous function
* @return {T} A stub builder on which the method or function to be stubbed can be invoked
*/
declare function when<T>(mock: T): T;
/**
* Verify that a mock object method or mock function was invoked
*
* @param mock A mock object or mock anonymous function
* @param verifier Optional JsMockito.Verifier instance (default: JsMockito.Verifiers.once())
* @return {T} A verifier on which the method or function to be verified can be invoked
*/
declare function verify<T>(mock: T): T;
declare function verify<T>(mock: T, verifier: JsMockito.Verifier): T;
/**
* Verify that no mock object methods or the mock function were ever invoked
*
* @param mock A mock object or mock anonymous function (multiple accepted)
*/
declare function verifyZeroInteractions(...mock: any[]): void;
/**
* Verify that no mock object method or mock function invocations remain
* unverified
*
* @param mock A mock object or mock anonymous function (multiple accepted)
*/
declare function verifyNoMoreInteractions(...mock: any[]): void;
/**
* Create a mock that proxies a real function or object. All un-stubbed
* invocations will be passed through to the real implementation, but can
* still be verified.
*
* @param delegate A 'real' (concrete) object or function that the mock will delegate unstubbed invocations to
* @return {T} A mock object (as per mock) or mock function (as per mockFunction)
*/
declare function spy<T>(delegate: T): T;
/**
* Create a mockable and stubbable anonymous function.
*
* <p>Once created, the function can be invoked and will return undefined for
* any interactions that do not match stub declarations.</p>
*
* <pre>
* var mockFunc = JsMockito.mockFunction();
* JsMockito.when(mockFunc).call(anything(), 1, 5).thenReturn(6);
* mockFunc(1, 5); // result is 6
* JsMockito.verify(mockFunc)(1, greaterThan(2));
* </pre>
*
* @param funcName The name of the mock function to use in messages (defaults to 'func')
* @param delegate The function to delegate unstubbed calls to (optional)
* @return {T} an anonymous function
*/
declare function mockFunction(): Function;
declare function mockFunction(funcName: string): Function;
declare function mockFunction(funcName: string, delegate: Function): Function;
/**
* Create a mockable and stubbable objects.
*
* <p>A mock is created with the constructor for an object as an argument.
* Once created, the mock object will have all the same methods as the source
* object which, when invoked, will return undefined by default.</p>
*
* <p>Stub declarations may then be made for these methods to have them return
* useful values or perform actions when invoked.</p>
*
* <pre>
* MyObject = function() {
* this.add = function(a, b) { return a + b }
* };
*
* var mockObj = JsMockito.mock(MyObject);
* mockObj.add(5, 4); // result is undefined
*
* JsMockito.when(mockFunc).add(1, 2).thenReturn(6);
* mockObj.add(1, 2); // result is 6
*
* JsMockito.verify(mockObj).add(1, greaterThan(2)); // ok
* JsMockito.verify(mockObj).add(1, equalTo(2)); // ok
* JsMockito.verify(mockObj).add(1, 4); // will throw an exception
* </pre>
*
* @param Obj {function} the constructor for the object to be mocked
* @return {object} a mock object
*/
declare function mock<T>(Obj: { new(): T ;}): T;
/**
* Test that a invocation never occurred. For example:
* <pre>
* verify(mock, never()).method();
* </pre>
* @see JsMockito.Verifiers.times(0)
*/
declare function never(): JsMockito.Verifier;
/** Test that no interaction were made on the mock. For example:
* <pre>
* verify(mock, zeroInteractions());
* </pre>
* @see JsMockito.verifyZeroInteractions()
*/
declare function zeroInteractions(): JsMockito.Verifier;
/** Test that no further interactions remain unverified on the mock. For
* example:
* <pre>
* verify(mock, noMoreInteractions());
* </pre>
* @see JsMockito.verifyNoMoreInteractions()
*/
declare function noMoreInteractions(): JsMockito.Verifier;
/**
* Test that an invocation occurred a specific number of times. For example:
* <pre>
* verify(mock, times(2)).method();
* </pre>
*
* @param wanted The number of desired invocations
*/
declare function times(wanted: number): JsMockito.Verifier;
/**
* Test that an invocation occurred exactly once. For example:
* <pre>
* verify(mock, once()).method();
* </pre>
* This is the default verifier.
* @see JsMockito.Verifiers.times(1)
*/
declare function once(): JsMockito.Verifier;