You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* THIS SOFTWARE IS SUBJECT TO THE TERMS OF THE MIT LICENSE.
5
+
* Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
6
+
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
7
+
*
8
+
* IN ADDITION, THE FOLLOWING DISCLAIMER APPLIES IN CONNECTION WITH THIS SOFTWARE:
9
+
* THIS SOFTWARE IS LICENSED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE AND ANY WARRANTY OF NON-INFRINGEMENT, ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. THIS SOFTWARE MAY BE REDISTRIBUTED TO OTHERS ONLY BY EFFECTIVELY USING THIS OR ANOTHER EQUIVALENT DISCLAIMER IN ADDITION TO ANY OTHER REQUIRED LICENSE TERMS.
10
+
*/
11
+
12
+
packageorg.mockito
13
+
14
+
importorg.mockito.matchers._
15
+
16
+
/**
17
+
* Trait that provides some syntax sugar and type mapping.
18
+
*
19
+
* It mostly forwards the calls to org.mockito.ArgumentMatchers, but with a few improvements to make it more scala-like
20
+
* It also renames the "eq" matcher to "eqTo" as in Scala "eq" is a keyword used to do object identity equality
21
+
*
22
+
* @author Bruno Bonanno
23
+
*
24
+
*/
25
+
traitArgumentMatchersSugar
26
+
extendsAnyMatchers
27
+
withEqMatchers
28
+
withEqMatchers_212
29
+
withThatMatchers
30
+
withStringThatMatchers
31
+
withNullMatchers
32
+
withFunctionMatchers
33
+
withNumericMatchers
34
+
withMacroBasedMatchers
35
+
36
+
/**
37
+
* Simple object to allow the usage of the trait without mixing it in
0 commit comments