How to use doAnswer method of org.mockito.internal.stubbing.DefaultLenientStubber class

Best Mockito code snippet using org.mockito.internal.stubbing.DefaultLenientStubber.doAnswer

Source:TestGroup100Case0.java Github

copy

Full Screen

...1862 org.mockito.stubbing.Answer<java.lang.Object> objAnswer0 = org.mockito.Mockito.RETURNS_MOCKS;1863 org.mockito.MockingDetails mockingDetails1 = org.mockito.Mockito.mockingDetails((java.lang.Object) objAnswer0);1864 // The following exception was thrown during execution in test generation1865 try {1866 org.mockito.stubbing.Stubber stubber2 = org.mockito.Mockito.doAnswer((org.mockito.stubbing.Answer) objAnswer0);1867 org.junit.Assert.fail("Expected exception of type org.mockito.exceptions.misusing.InvalidUseOfMatchersException; message: ?Misplaced or misused argument matcher detected here:??-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)??You cannot use argument matchers outside of verification or stubbing.?Examples of correct usage of argument matchers:? when(mock.get(anyInt())).thenReturn(null);? doThrow(new RuntimeException()).when(mock).someVoidMethod(anyObject());? verify(mock).someMethod(contains(\"foo\"))??This message may appear after an NullPointerException if the last matcher is returning an object ?like any() but the stubbed method signature expect a primitive argument, in this case,?use primitive alternatives.? when(mock.get(any())); // bad use, will raise NPE? when(mock.get(anyInt())); // correct usage use??Also, this error might show up because you use argument matchers with methods that cannot be mocked.?Following methods *cannot* be stubbed/verified: final/private/equals()/hashCode().?Mocking methods declared on non-public parent classes is not supported.?");1868 } catch (org.mockito.exceptions.misusing.InvalidUseOfMatchersException e) {1869 // Expected exception.1870 }1871 org.junit.Assert.assertTrue("'" + objAnswer0 + "' != '" + org.mockito.Answers.RETURNS_MOCKS + "'", objAnswer0.equals(org.mockito.Answers.RETURNS_MOCKS));1872 org.junit.Assert.assertNotNull(mockingDetails1);1873 }1874 @Test1875 public void test175() throws Throwable {1876 if (debug)1877 System.out.format("%n%s%n", "TestGroup100Case0.test175");1878 org.mockito.stubbing.LenientStubber lenientStubber0 = org.mockito.ArgumentMatchers.anyVararg();1879 org.junit.Assert.assertNull(lenientStubber0);1880 }1881 @Test1882 public void test176() throws Throwable {1883 if (debug)1884 System.out.format("%n%s%n", "TestGroup100Case0.test176");1885 java.lang.String[] strArray1 = new java.lang.String[] {};1886 java.lang.String str2 = org.mockito.ArgumentMatchers.refEq("method1", strArray1);1887 java.lang.Object[] objArray3 = org.mockito.Mockito.ignoreStubs((java.lang.Object[]) strArray1);1888 // The following exception was thrown during execution in test generation1889 try {1890 org.mockito.Mockito.verifyNoInteractions(objArray3);1891 org.junit.Assert.fail("Expected exception of type org.mockito.exceptions.base.MockitoException; message: ?Method requires argument(s)!?Pass mocks that should be verified, e.g:? verifyNoMoreInteractions(mockOne, mockTwo);? verifyNoInteractions(mockOne, mockTwo);?");1892 } catch (org.mockito.exceptions.base.MockitoException e) {1893 // Expected exception.1894 }1895 org.junit.Assert.assertNotNull(strArray1);1896 org.junit.Assert.assertNull(str2);1897 org.junit.Assert.assertNotNull(objArray3);1898 org.junit.Assert.assertEquals(java.util.Arrays.deepToString(objArray3), "[]");1899 org.junit.Assert.assertEquals(java.util.Arrays.toString(objArray3), "[]");1900 }1901 @Test1902 public void test177() throws Throwable {1903 if (debug)1904 System.out.format("%n%s%n", "TestGroup100Case0.test177");1905 int int1 = org.mockito.ArgumentMatchers.eq(0);1906 org.junit.Assert.assertTrue("'" + int1 + "' != '" + 0 + "'", int1 == 0);1907 }1908 @Test1909 public void test178() throws Throwable {1910 if (debug)1911 System.out.format("%n%s%n", "TestGroup100Case0.test178");1912 java.lang.String str1 = org.mockito.ArgumentMatchers.startsWith("attach");1913 org.junit.Assert.assertEquals("'" + str1 + "' != '" + "" + "'", str1, "");1914 }1915 @Test1916 public void test179() throws Throwable {1917 if (debug)1918 System.out.format("%n%s%n", "TestGroup100Case0.test179");1919 java.lang.Throwable throwable0 = null;1920 java.lang.Throwable[] throwableArray1 = new java.lang.Throwable[] { throwable0 };1921 // The following exception was thrown during execution in test generation1922 try {1923 org.mockito.stubbing.Stubber stubber2 = org.mockito.Mockito.doThrow(throwableArray1);1924 org.junit.Assert.fail("Expected exception of type org.mockito.exceptions.misusing.InvalidUseOfMatchersException; message: ?Misplaced or misused argument matcher detected here:??-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)?-> at sun.reflect.GeneratedMethodAccessor25.invoke(Unknown Source)?-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)?-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)??You cannot use argument matchers outside of verification or stubbing.?Examples of correct usage of argument matchers:? when(mock.get(anyInt())).thenReturn(null);? doThrow(new RuntimeException()).when(mock).someVoidMethod(anyObject());? verify(mock).someMethod(contains(\"foo\"))??This message may appear after an NullPointerException if the last matcher is returning an object ?like any() but the stubbed method signature expect a primitive argument, in this case,?use primitive alternatives.? when(mock.get(any())); // bad use, will raise NPE? when(mock.get(anyInt())); // correct usage use??Also, this error might show up because you use argument matchers with methods that cannot be mocked.?Following methods *cannot* be stubbed/verified: final/private/equals()/hashCode().?Mocking methods declared on non-public parent classes is not supported.?");1925 } catch (org.mockito.exceptions.misusing.InvalidUseOfMatchersException e) {1926 // Expected exception.1927 }1928 org.junit.Assert.assertNotNull(throwableArray1);1929 }1930 @Test1931 public void test180() throws Throwable {1932 if (debug)1933 System.out.format("%n%s%n", "TestGroup100Case0.test180");1934 java.util.Map<org.mockito.verification.VerificationWithTimeout, java.lang.Object[]> verificationWithTimeoutMap0 = org.mockito.ArgumentMatchers.anyMap();1935 org.junit.Assert.assertNotNull(verificationWithTimeoutMap0);1936 }1937 @Test1938 public void test181() throws Throwable {1939 if (debug)1940 System.out.format("%n%s%n", "TestGroup100Case0.test181");1941 java.lang.String[] strArray2 = new java.lang.String[] {};1942 java.lang.String str3 = org.mockito.ArgumentMatchers.refEq("method1", strArray2);1943 // The following exception was thrown during execution in test generation1944 try {1945 org.mockito.stubbing.Stubber stubber4 = org.mockito.Mockito.doReturn((java.lang.Object) 1.0f, (java.lang.Object[]) strArray2);1946 org.junit.Assert.fail("Expected exception of type org.mockito.exceptions.misusing.InvalidUseOfMatchersException; message: ?Misplaced or misused argument matcher detected here:??-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)?-> at sun.reflect.GeneratedMethodAccessor25.invoke(Unknown Source)??You cannot use argument matchers outside of verification or stubbing.?Examples of correct usage of argument matchers:? when(mock.get(anyInt())).thenReturn(null);? doThrow(new RuntimeException()).when(mock).someVoidMethod(anyObject());? verify(mock).someMethod(contains(\"foo\"))??This message may appear after an NullPointerException if the last matcher is returning an object ?like any() but the stubbed method signature expect a primitive argument, in this case,?use primitive alternatives.? when(mock.get(any())); // bad use, will raise NPE? when(mock.get(anyInt())); // correct usage use??Also, this error might show up because you use argument matchers with methods that cannot be mocked.?Following methods *cannot* be stubbed/verified: final/private/equals()/hashCode().?Mocking methods declared on non-public parent classes is not supported.?");1947 } catch (org.mockito.exceptions.misusing.InvalidUseOfMatchersException e) {1948 // Expected exception.1949 }1950 org.junit.Assert.assertNotNull(strArray2);1951 org.junit.Assert.assertNull(str3);1952 }1953 @Test1954 public void test182() throws Throwable {1955 if (debug)1956 System.out.format("%n%s%n", "TestGroup100Case0.test182");1957 java.lang.Object obj0 = org.mockito.ArgumentMatchers.anyVararg();1958 org.junit.Assert.assertNull(obj0);1959 }1960 @Test1961 public void test183() throws Throwable {1962 if (debug)1963 System.out.format("%n%s%n", "TestGroup100Case0.test183");1964 float float0 = org.mockito.ArgumentMatchers.anyFloat();1965 org.junit.Assert.assertTrue("'" + float0 + "' != '" + 0.0f + "'", float0 == 0.0f);1966 }1967 @Test1968 public void test184() throws Throwable {1969 if (debug)1970 System.out.format("%n%s%n", "TestGroup100Case0.test184");1971 org.mockito.verification.VerificationWithTimeout verificationWithTimeout1 = org.mockito.Mockito.timeout((long) (short) 100);1972 java.lang.String[] strArray2 = new java.lang.String[] {};1973 org.mockito.verification.VerificationWithTimeout verificationWithTimeout3 = org.mockito.ArgumentMatchers.refEq(verificationWithTimeout1, strArray2);1974 org.mockito.verification.VerificationWithTimeout verificationWithTimeout5 = org.mockito.Mockito.timeout((long) (short) 100);1975 // The following exception was thrown during execution in test generation1976 try {1977 java.lang.String[] strArray6 = org.mockito.Mockito.verify(strArray2, (org.mockito.verification.VerificationMode) verificationWithTimeout5);1978 org.junit.Assert.fail("Expected exception of type org.mockito.exceptions.misusing.NotAMockException; message: ?Argument passed to verify() is of type String[] and is not a mock!?Make sure you place the parenthesis correctly!?See the examples of correct verifications:? verify(mock).someMethod();? verify(mock, times(10)).someMethod();? verify(mock, atLeastOnce()).someMethod();");1979 } catch (org.mockito.exceptions.misusing.NotAMockException e) {1980 // Expected exception.1981 }1982 org.junit.Assert.assertNotNull(verificationWithTimeout1);1983 org.junit.Assert.assertNotNull(strArray2);1984 org.junit.Assert.assertNull(verificationWithTimeout3);1985 org.junit.Assert.assertNotNull(verificationWithTimeout5);1986 }1987 @Test1988 public void test185() throws Throwable {1989 if (debug)1990 System.out.format("%n%s%n", "TestGroup100Case0.test185");1991 java.lang.ThreadGroup threadGroup0 = null;1992 org.apache.dubbo.common.threadlocal.InternalThread internalThread2 = new org.apache.dubbo.common.threadlocal.InternalThread(threadGroup0, "Too many thread-local indexed variables");1993 org.apache.dubbo.common.threadlocal.InternalThreadLocalMap internalThreadLocalMap3 = internalThread2.threadLocalMap();1994 org.junit.Assert.assertNull(internalThreadLocalMap3);1995 }1996 @Test1997 public void test186() throws Throwable {1998 if (debug)1999 System.out.format("%n%s%n", "TestGroup100Case0.test186");2000 java.lang.String[] strArray1 = new java.lang.String[] {};2001 java.lang.String str2 = org.mockito.ArgumentMatchers.refEq("method1", strArray1);2002 java.lang.Object[] objArray3 = org.mockito.Mockito.ignoreStubs((java.lang.Object[]) strArray1);2003 // The following exception was thrown during execution in test generation2004 try {2005 org.mockito.Mockito.verifyNoMoreInteractions((java.lang.Object[]) strArray1);2006 org.junit.Assert.fail("Expected exception of type org.mockito.exceptions.base.MockitoException; message: ?Method requires argument(s)!?Pass mocks that should be verified, e.g:? verifyNoMoreInteractions(mockOne, mockTwo);? verifyNoInteractions(mockOne, mockTwo);?");2007 } catch (org.mockito.exceptions.base.MockitoException e) {2008 // Expected exception.2009 }2010 org.junit.Assert.assertNotNull(strArray1);2011 org.junit.Assert.assertNull(str2);2012 org.junit.Assert.assertNotNull(objArray3);2013 org.junit.Assert.assertEquals(java.util.Arrays.deepToString(objArray3), "[]");2014 org.junit.Assert.assertEquals(java.util.Arrays.toString(objArray3), "[]");2015 }2016 @Test2017 public void test187() throws Throwable {2018 if (debug)2019 System.out.format("%n%s%n", "TestGroup100Case0.test187");2020 org.mockito.session.MockitoSessionBuilder mockitoSessionBuilder0 = org.mockito.Mockito.mockitoSession();2021 org.mockito.MockSettings mockSettings1 = org.mockito.Mockito.withSettings();2022 java.lang.Class<?> wildcardClass2 = mockSettings1.getClass();2023 org.mockito.verification.VerificationWithTimeout verificationWithTimeout4 = org.mockito.Mockito.timeout((long) (short) 100);2024 java.lang.String[] strArray5 = new java.lang.String[] {};2025 org.mockito.verification.VerificationWithTimeout verificationWithTimeout6 = org.mockito.ArgumentMatchers.refEq(verificationWithTimeout4, strArray5);2026 java.lang.reflect.AnnotatedElement annotatedElement7 = org.mockito.ArgumentMatchers.refEq((java.lang.reflect.AnnotatedElement) wildcardClass2, strArray5);2027 org.mockito.session.MockitoSessionBuilder mockitoSessionBuilder8 = org.mockito.ArgumentMatchers.refEq(mockitoSessionBuilder0, strArray5);2028 // The following exception was thrown during execution in test generation2029 try {2030 org.mockito.Mockito.verifyNoMoreInteractions((java.lang.Object[]) strArray5);2031 org.junit.Assert.fail("Expected exception of type org.mockito.exceptions.base.MockitoException; message: ?Method requires argument(s)!?Pass mocks that should be verified, e.g:? verifyNoMoreInteractions(mockOne, mockTwo);? verifyNoInteractions(mockOne, mockTwo);?");2032 } catch (org.mockito.exceptions.base.MockitoException e) {2033 // Expected exception.2034 }2035 org.junit.Assert.assertNotNull(mockitoSessionBuilder0);2036 org.junit.Assert.assertNotNull(mockSettings1);2037 org.junit.Assert.assertNotNull(wildcardClass2);2038 org.junit.Assert.assertNotNull(verificationWithTimeout4);2039 org.junit.Assert.assertNotNull(strArray5);2040 org.junit.Assert.assertNull(verificationWithTimeout6);2041 org.junit.Assert.assertNull(annotatedElement7);2042 org.junit.Assert.assertNull(mockitoSessionBuilder8);2043 }2044 @Test2045 public void test188() throws Throwable {2046 if (debug)2047 System.out.format("%n%s%n", "TestGroup100Case0.test188");2048 org.mockito.verification.VerificationMode verificationMode1 = org.mockito.Mockito.atLeast((int) (short) 100);2049 org.junit.Assert.assertNotNull(verificationMode1);2050 }2051 @Test2052 public void test189() throws Throwable {2053 if (debug)2054 System.out.format("%n%s%n", "TestGroup100Case0.test189");2055 float float1 = org.mockito.ArgumentMatchers.eq((float) 100L);2056 org.junit.Assert.assertTrue("'" + float1 + "' != '" + 0.0f + "'", float1 == 0.0f);2057 }2058 @Test2059 public void test190() throws Throwable {2060 if (debug)2061 System.out.format("%n%s%n", "TestGroup100Case0.test190");2062 char char1 = org.mockito.ArgumentMatchers.eq('a');2063 org.junit.Assert.assertTrue("'" + char1 + "' != '" + '\000' + "'", char1 == '\000');2064 }2065 @Test2066 public void test191() throws Throwable {2067 if (debug)2068 System.out.format("%n%s%n", "TestGroup100Case0.test191");2069 org.mockito.verification.VerificationWithTimeout verificationWithTimeout0 = org.mockito.ArgumentMatchers.notNull();2070 org.junit.Assert.assertNull(verificationWithTimeout0);2071 }2072 @Test2073 public void test192() throws Throwable {2074 if (debug)2075 System.out.format("%n%s%n", "TestGroup100Case0.test192");2076 java.lang.String[] strArray1 = new java.lang.String[] {};2077 java.lang.String str2 = org.mockito.ArgumentMatchers.refEq("method1", strArray1);2078 java.lang.Object[] objArray3 = org.mockito.Mockito.ignoreStubs((java.lang.Object[]) strArray1);2079 // The following exception was thrown during execution in test generation2080 try {2081 org.mockito.Mockito.verifyZeroInteractions((java.lang.Object[]) strArray1);2082 org.junit.Assert.fail("Expected exception of type org.mockito.exceptions.base.MockitoException; message: ?Method requires argument(s)!?Pass mocks that should be verified, e.g:? verifyNoMoreInteractions(mockOne, mockTwo);? verifyNoInteractions(mockOne, mockTwo);?");2083 } catch (org.mockito.exceptions.base.MockitoException e) {2084 // Expected exception.2085 }2086 org.junit.Assert.assertNotNull(strArray1);2087 org.junit.Assert.assertNull(str2);2088 org.junit.Assert.assertNotNull(objArray3);2089 org.junit.Assert.assertEquals(java.util.Arrays.deepToString(objArray3), "[]");2090 org.junit.Assert.assertEquals(java.util.Arrays.toString(objArray3), "[]");2091 }2092 @Test2093 public void test193() throws Throwable {2094 if (debug)2095 System.out.format("%n%s%n", "TestGroup100Case0.test193");2096 java.lang.ThreadGroup threadGroup0 = null;2097 java.lang.ThreadGroup threadGroup1 = null;2098 java.lang.ThreadGroup threadGroup2 = null;2099 org.apache.dubbo.common.threadlocal.InternalThread internalThread4 = new org.apache.dubbo.common.threadlocal.InternalThread(threadGroup2, "Succeeded to forking invoke provider !");2100 org.apache.dubbo.common.threadlocal.InternalThread internalThread7 = new org.apache.dubbo.common.threadlocal.InternalThread(threadGroup1, (java.lang.Runnable) internalThread4, "value", 1L);2101 org.apache.dubbo.common.threadlocal.InternalThreadLocalMap internalThreadLocalMap8 = internalThread7.threadLocalMap();2102 org.apache.dubbo.common.threadlocal.InternalThread internalThread11 = new org.apache.dubbo.common.threadlocal.InternalThread(threadGroup0, (java.lang.Runnable) internalThread7, "Too many thread-local indexed variables", (-1L));2103 // The following exception was thrown during execution in test generation2104 try {2105 org.mockito.stubbing.Stubber stubber12 = org.mockito.Mockito.doReturn((java.lang.Object) "Too many thread-local indexed variables");2106 org.junit.Assert.fail("Expected exception of type org.mockito.exceptions.misusing.InvalidUseOfMatchersException; message: ?Misplaced or misused argument matcher detected here:??-> at sun.reflect.GeneratedMethodAccessor25.invoke(Unknown Source)?-> at sun.reflect.GeneratedMethodAccessor25.invoke(Unknown Source)?-> at sun.reflect.GeneratedMethodAccessor25.invoke(Unknown Source)?-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)?-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)?-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)?-> at sun.reflect.GeneratedMethodAccessor25.invoke(Unknown Source)??You cannot use argument matchers outside of verification or stubbing.?Examples of correct usage of argument matchers:? when(mock.get(anyInt())).thenReturn(null);? doThrow(new RuntimeException()).when(mock).someVoidMethod(anyObject());? verify(mock).someMethod(contains(\"foo\"))??This message may appear after an NullPointerException if the last matcher is returning an object ?like any() but the stubbed method signature expect a primitive argument, in this case,?use primitive alternatives.? when(mock.get(any())); // bad use, will raise NPE? when(mock.get(anyInt())); // correct usage use??Also, this error might show up because you use argument matchers with methods that cannot be mocked.?Following methods *cannot* be stubbed/verified: final/private/equals()/hashCode().?Mocking methods declared on non-public parent classes is not supported.?");2107 } catch (org.mockito.exceptions.misusing.InvalidUseOfMatchersException e) {2108 // Expected exception.2109 }2110 org.junit.Assert.assertNull(internalThreadLocalMap8);2111 }2112 @Test2113 public void test194() throws Throwable {2114 if (debug)2115 System.out.format("%n%s%n", "TestGroup100Case0.test194");2116 org.mockito.verification.VerificationMode verificationMode1 = org.mockito.Mockito.times(100);2117 org.junit.Assert.assertNotNull(verificationMode1);2118 }2119 @Test2120 public void test195() throws Throwable {2121 if (debug)2122 System.out.format("%n%s%n", "TestGroup100Case0.test195");2123 java.util.Map<java.util.Set<java.lang.Comparable<java.lang.String>>, org.mockito.MockSettings> strComparableSetMap2 = org.mockito.ArgumentMatchers.anyMap();2124 java.util.Map<org.mockito.verification.VerificationWithTimeout, java.lang.Object[]> verificationWithTimeoutMap3 = org.mockito.ArgumentMatchers.anyMap();2125 java.util.Set<java.util.Map<java.util.Set<java.lang.Comparable<java.lang.String>>, org.mockito.MockSettings>> comparableSetMapSet5 = org.mockito.ArgumentMatchers.anySet();2126 java.lang.Object[] objArray6 = new java.lang.Object[] { "Succeeded to forking invoke provider !", 10, strComparableSetMap2, verificationWithTimeoutMap3, "Failed to forking invoke provider", comparableSetMapSet5 };2127 // The following exception was thrown during execution in test generation2128 try {2129 org.mockito.InOrder inOrder7 = org.mockito.Mockito.inOrder(objArray6);2130 org.junit.Assert.fail("Expected exception of type org.mockito.exceptions.misusing.NotAMockException; message: ?Argument(s) passed is not a mock!?Pass mocks that require verification in order.?For example:? InOrder inOrder = inOrder(mockOne, mockTwo);");2131 } catch (org.mockito.exceptions.misusing.NotAMockException e) {2132 // Expected exception.2133 }2134 org.junit.Assert.assertNotNull(strComparableSetMap2);2135 org.junit.Assert.assertNotNull(verificationWithTimeoutMap3);2136 org.junit.Assert.assertNotNull(comparableSetMapSet5);2137 org.junit.Assert.assertNotNull(objArray6);2138 org.junit.Assert.assertEquals(java.util.Arrays.deepToString(objArray6), "[Succeeded to forking invoke provider !, 10, {}, {}, Failed to forking invoke provider, []]");2139 org.junit.Assert.assertEquals(java.util.Arrays.toString(objArray6), "[Succeeded to forking invoke provider !, 10, {}, {}, Failed to forking invoke provider, []]");2140 }2141 @Test2142 public void test196() throws Throwable {2143 if (debug)2144 System.out.format("%n%s%n", "TestGroup100Case0.test196");2145 java.lang.String str1 = org.mockito.ArgumentMatchers.contains("Succeeded to forking invoke provider !");2146 org.junit.Assert.assertEquals("'" + str1 + "' != '" + "" + "'", str1, "");2147 }2148 @Test2149 public void test197() throws Throwable {2150 if (debug)2151 System.out.format("%n%s%n", "TestGroup100Case0.test197");2152 org.mockito.ArgumentMatcher<java.lang.Short> shortArgumentMatcher0 = null;2153 short short1 = org.mockito.ArgumentMatchers.shortThat(shortArgumentMatcher0);2154 org.junit.Assert.assertTrue("'" + short1 + "' != '" + (short) 0 + "'", short1 == (short) 0);2155 }2156 @Test2157 public void test198() throws Throwable {2158 if (debug)2159 System.out.format("%n%s%n", "TestGroup100Case0.test198");2160 java.util.Collection<java.lang.reflect.GenericDeclaration> genericDeclarationCollection0 = org.mockito.ArgumentMatchers.anyCollection();2161 org.mockito.MockingDetails mockingDetails1 = org.mockito.Mockito.mockingDetails((java.lang.Object) genericDeclarationCollection0);2162 org.junit.Assert.assertNotNull(genericDeclarationCollection0);2163 org.junit.Assert.assertNotNull(mockingDetails1);2164 }2165 @Test2166 public void test199() throws Throwable {2167 if (debug)2168 System.out.format("%n%s%n", "TestGroup100Case0.test199");2169 java.lang.String str1 = org.mockito.ArgumentMatchers.matches("value");2170 org.junit.Assert.assertEquals("'" + str1 + "' != '" + "" + "'", str1, "");2171 }2172 @Test2173 public void test200() throws Throwable {2174 if (debug)2175 System.out.format("%n%s%n", "TestGroup100Case0.test200");2176 org.apache.dubbo.common.threadlocal.InternalThread internalThread1 = new org.apache.dubbo.common.threadlocal.InternalThread("attach");2177 org.apache.dubbo.common.threadlocal.InternalThread internalThread2 = new org.apache.dubbo.common.threadlocal.InternalThread((java.lang.Runnable) internalThread1);2178 // The following exception was thrown during execution in test generation2179 try {2180 org.mockito.stubbing.OngoingStubbing<java.lang.Object> objOngoingStubbing3 = org.mockito.Mockito.when((java.lang.Object) internalThread2);2181 org.junit.Assert.fail("Expected exception of type org.mockito.exceptions.misusing.InvalidUseOfMatchersException; message: ?Misplaced or misused argument matcher detected here:??-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)?-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)?-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)?-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)?-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)?-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)?-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)??You cannot use argument matchers outside of verification or stubbing.?Examples of correct usage of argument matchers:? when(mock.get(anyInt())).thenReturn(null);? doThrow(new RuntimeException()).when(mock).someVoidMethod(anyObject());? verify(mock).someMethod(contains(\"foo\"))??This message may appear after an NullPointerException if the last matcher is returning an object ?like any() but the stubbed method signature expect a primitive argument, in this case,?use primitive alternatives.? when(mock.get(any())); // bad use, will raise NPE? when(mock.get(anyInt())); // correct usage use??Also, this error might show up because you use argument matchers with methods that cannot be mocked.?Following methods *cannot* be stubbed/verified: final/private/equals()/hashCode().?Mocking methods declared on non-public parent classes is not supported.?");2182 } catch (org.mockito.exceptions.misusing.InvalidUseOfMatchersException e) {2183 // Expected exception.2184 }2185 }2186 @Test2187 public void test201() throws Throwable {2188 if (debug)2189 System.out.format("%n%s%n", "TestGroup100Case0.test201");2190 org.mockito.verification.VerificationWithTimeout verificationWithTimeout1 = org.mockito.Mockito.timeout(0L);2191 org.junit.Assert.assertNotNull(verificationWithTimeout1);2192 }2193 @Test2194 public void test202() throws Throwable {2195 if (debug)2196 System.out.format("%n%s%n", "TestGroup100Case0.test202");2197 java.util.Map<org.mockito.ArgumentMatchers, java.lang.Iterable<org.mockito.Mockito>> argumentMatchersMap0 = org.mockito.ArgumentMatchers.anyMap();2198 org.junit.Assert.assertNotNull(argumentMatchersMap0);2199 }2200 @Test2201 public void test203() throws Throwable {2202 if (debug)2203 System.out.format("%n%s%n", "TestGroup100Case0.test203");2204 java.lang.String str1 = org.mockito.ArgumentMatchers.matches("clear attachment failed!");2205 org.junit.Assert.assertEquals("'" + str1 + "' != '" + "" + "'", str1, "");2206 }2207 @Test2208 public void test204() throws Throwable {2209 if (debug)2210 System.out.format("%n%s%n", "TestGroup100Case0.test204");2211 org.mockito.verification.VerificationMode verificationMode0 = org.mockito.ArgumentMatchers.isNull();2212 org.junit.Assert.assertNull(verificationMode0);2213 }2214 @Test2215 public void test205() throws Throwable {2216 if (debug)2217 System.out.format("%n%s%n", "TestGroup100Case0.test205");2218 org.mockito.verification.VerificationMode verificationMode1 = org.mockito.Mockito.atMost(10);2219 org.junit.Assert.assertNotNull(verificationMode1);2220 }2221 @Test2222 public void test206() throws Throwable {2223 if (debug)2224 System.out.format("%n%s%n", "TestGroup100Case0.test206");2225 java.lang.reflect.GenericDeclaration genericDeclaration0 = org.mockito.ArgumentMatchers.isNull();2226 org.junit.Assert.assertNull(genericDeclaration0);2227 }2228 @Test2229 public void test207() throws Throwable {2230 if (debug)2231 System.out.format("%n%s%n", "TestGroup100Case0.test207");2232 org.mockito.Mockito mockito0 = org.mockito.ArgumentMatchers.any();2233 org.junit.Assert.assertNull(mockito0);2234 }2235 @Test2236 public void test208() throws Throwable {2237 if (debug)2238 System.out.format("%n%s%n", "TestGroup100Case0.test208");2239 java.lang.ThreadGroup threadGroup0 = null;2240 org.apache.dubbo.common.threadlocal.InternalThread internalThread2 = new org.apache.dubbo.common.threadlocal.InternalThread(threadGroup0, "attach");2241 }2242 @Test2243 public void test209() throws Throwable {2244 if (debug)2245 System.out.format("%n%s%n", "TestGroup100Case0.test209");2246 org.mockito.verification.VerificationMode verificationMode1 = org.mockito.Mockito.description("Too many thread-local indexed variables");2247 org.junit.Assert.assertNotNull(verificationMode1);2248 }2249 @Test2250 public void test210() throws Throwable {2251 if (debug)2252 System.out.format("%n%s%n", "TestGroup100Case0.test210");2253 org.mockito.verification.VerificationMode verificationMode1 = org.mockito.Mockito.description("method1");2254 org.mockito.session.MockitoSessionBuilder mockitoSessionBuilder2 = org.mockito.Mockito.mockitoSession();2255 org.mockito.MockSettings mockSettings3 = org.mockito.Mockito.withSettings();2256 java.lang.Class<?> wildcardClass4 = mockSettings3.getClass();2257 org.mockito.verification.VerificationWithTimeout verificationWithTimeout6 = org.mockito.Mockito.timeout((long) (short) 100);2258 java.lang.String[] strArray7 = new java.lang.String[] {};2259 org.mockito.verification.VerificationWithTimeout verificationWithTimeout8 = org.mockito.ArgumentMatchers.refEq(verificationWithTimeout6, strArray7);2260 java.lang.reflect.AnnotatedElement annotatedElement9 = org.mockito.ArgumentMatchers.refEq((java.lang.reflect.AnnotatedElement) wildcardClass4, strArray7);2261 org.mockito.session.MockitoSessionBuilder mockitoSessionBuilder10 = org.mockito.ArgumentMatchers.refEq(mockitoSessionBuilder2, strArray7);2262 // The following exception was thrown during execution in test generation2263 try {2264 org.mockito.stubbing.Stubber stubber11 = org.mockito.Mockito.doReturn((java.lang.Object) "method1", (java.lang.Object[]) strArray7);2265 org.junit.Assert.fail("Expected exception of type org.mockito.exceptions.misusing.InvalidUseOfMatchersException; message: ?Misplaced or misused argument matcher detected here:??-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)?-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)?-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)?-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)?-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)?-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)?-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)?-> at sun.reflect.GeneratedMethodAccessor25.invoke(Unknown Source)?-> at sun.reflect.GeneratedMethodAccessor25.invoke(Unknown Source)?-> at sun.reflect.GeneratedMethodAccessor25.invoke(Unknown Source)??You cannot use argument matchers outside of verification or stubbing.?Examples of correct usage of argument matchers:? when(mock.get(anyInt())).thenReturn(null);? doThrow(new RuntimeException()).when(mock).someVoidMethod(anyObject());? verify(mock).someMethod(contains(\"foo\"))??This message may appear after an NullPointerException if the last matcher is returning an object ?like any() but the stubbed method signature expect a primitive argument, in this case,?use primitive alternatives.? when(mock.get(any())); // bad use, will raise NPE? when(mock.get(anyInt())); // correct usage use??Also, this error might show up because you use argument matchers with methods that cannot be mocked.?Following methods *cannot* be stubbed/verified: final/private/equals()/hashCode().?Mocking methods declared on non-public parent classes is not supported.?");2266 } catch (org.mockito.exceptions.misusing.InvalidUseOfMatchersException e) {2267 // Expected exception.2268 }2269 org.junit.Assert.assertNotNull(verificationMode1);2270 org.junit.Assert.assertNotNull(mockitoSessionBuilder2);2271 org.junit.Assert.assertNotNull(mockSettings3);2272 org.junit.Assert.assertNotNull(wildcardClass4);2273 org.junit.Assert.assertNotNull(verificationWithTimeout6);2274 org.junit.Assert.assertNotNull(strArray7);2275 org.junit.Assert.assertNull(verificationWithTimeout8);2276 org.junit.Assert.assertNull(annotatedElement9);2277 org.junit.Assert.assertNull(mockitoSessionBuilder10);2278 }2279 @Test2280 public void test211() throws Throwable {2281 if (debug)2282 System.out.format("%n%s%n", "TestGroup100Case0.test211");2283 java.util.List<java.lang.Comparable<java.lang.String>> strComparableList0 = org.mockito.ArgumentMatchers.anyList();2284 java.util.List<java.lang.Comparable<java.lang.String>> strComparableList1 = org.mockito.ArgumentMatchers.anyList();2285 java.util.List<java.lang.Comparable<java.lang.String>> strComparableList2 = org.mockito.ArgumentMatchers.anyList();2286 java.util.List<java.lang.Comparable<java.lang.String>> strComparableList3 = org.mockito.ArgumentMatchers.anyList();2287 java.util.Collection[] collectionArray5 = new java.util.Collection[4];2288 @SuppressWarnings("unchecked")2289 java.util.Collection<java.lang.Comparable<java.lang.String>>[] strComparableCollectionArray6 = (java.util.Collection<java.lang.Comparable<java.lang.String>>[]) collectionArray5;2290 strComparableCollectionArray6[0] = strComparableList0;2291 strComparableCollectionArray6[1] = strComparableList1;2292 strComparableCollectionArray6[2] = strComparableList2;2293 strComparableCollectionArray6[3] = strComparableList3;2294 // The following exception was thrown during execution in test generation2295 try {2296 org.mockito.Mockito.reset(strComparableCollectionArray6);2297 org.junit.Assert.fail("Expected exception of type org.mockito.exceptions.misusing.InvalidUseOfMatchersException; message: ?Misplaced or misused argument matcher detected here:??-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)?-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)?-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)?-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)??You cannot use argument matchers outside of verification or stubbing.?Examples of correct usage of argument matchers:? when(mock.get(anyInt())).thenReturn(null);? doThrow(new RuntimeException()).when(mock).someVoidMethod(anyObject());? verify(mock).someMethod(contains(\"foo\"))??This message may appear after an NullPointerException if the last matcher is returning an object ?like any() but the stubbed method signature expect a primitive argument, in this case,?use primitive alternatives.? when(mock.get(any())); // bad use, will raise NPE? when(mock.get(anyInt())); // correct usage use??Also, this error might show up because you use argument matchers with methods that cannot be mocked.?Following methods *cannot* be stubbed/verified: final/private/equals()/hashCode().?Mocking methods declared on non-public parent classes is not supported.?");2298 } catch (org.mockito.exceptions.misusing.InvalidUseOfMatchersException e) {2299 // Expected exception.2300 }2301 org.junit.Assert.assertNotNull(strComparableList0);2302 org.junit.Assert.assertNotNull(strComparableList1);2303 org.junit.Assert.assertNotNull(strComparableList2);2304 org.junit.Assert.assertNotNull(strComparableList3);2305 org.junit.Assert.assertNotNull(collectionArray5);2306 org.junit.Assert.assertNotNull(strComparableCollectionArray6);2307 }2308 @Test2309 public void test212() throws Throwable {2310 if (debug)2311 System.out.format("%n%s%n", "TestGroup100Case0.test212");2312 java.lang.String str1 = org.mockito.ArgumentMatchers.startsWith("Too many thread-local indexed variables");2313 org.junit.Assert.assertEquals("'" + str1 + "' != '" + "" + "'", str1, "");2314 }2315 @Test2316 public void test213() throws Throwable {2317 if (debug)2318 System.out.format("%n%s%n", "TestGroup100Case0.test213");2319 java.util.Map<java.lang.Iterable<org.mockito.Mockito>, java.lang.Object[]> mockitoIterableMap0 = org.mockito.ArgumentMatchers.anyMap();2320 org.junit.Assert.assertNotNull(mockitoIterableMap0);2321 }2322 @Test2323 public void test214() throws Throwable {2324 if (debug)2325 System.out.format("%n%s%n", "TestGroup100Case0.test214");2326 boolean boolean1 = org.mockito.ArgumentMatchers.eq(true);2327 org.junit.Assert.assertTrue("'" + boolean1 + "' != '" + false + "'", boolean1 == false);2328 }2329 @Test2330 public void test215() throws Throwable {2331 if (debug)2332 System.out.format("%n%s%n", "TestGroup100Case0.test215");2333 java.util.List<java.lang.Object> objList0 = org.mockito.ArgumentMatchers.anyList();2334 org.junit.Assert.assertNotNull(objList0);2335 }2336 @Test2337 public void test216() throws Throwable {2338 if (debug)2339 System.out.format("%n%s%n", "TestGroup100Case0.test216");2340 long long1 = org.mockito.ArgumentMatchers.eq((long) 10);2341 org.junit.Assert.assertTrue("'" + long1 + "' != '" + 0L + "'", long1 == 0L);2342 }2343 @Test2344 public void test217() throws Throwable {2345 if (debug)2346 System.out.format("%n%s%n", "TestGroup100Case0.test217");2347 org.mockito.MockingDetails mockingDetails1 = org.mockito.Mockito.mockingDetails((java.lang.Object) 0);2348 org.mockito.MockingDetails[] mockingDetailsArray2 = new org.mockito.MockingDetails[] { mockingDetails1 };2349 // The following exception was thrown during execution in test generation2350 try {2351 org.mockito.Mockito.clearInvocations(mockingDetailsArray2);2352 org.junit.Assert.fail("Expected exception of type org.mockito.exceptions.misusing.InvalidUseOfMatchersException; message: ?Misplaced or misused argument matcher detected here:??-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)?-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)?-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)?-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)??You cannot use argument matchers outside of verification or stubbing.?Examples of correct usage of argument matchers:? when(mock.get(anyInt())).thenReturn(null);? doThrow(new RuntimeException()).when(mock).someVoidMethod(anyObject());? verify(mock).someMethod(contains(\"foo\"))??This message may appear after an NullPointerException if the last matcher is returning an object ?like any() but the stubbed method signature expect a primitive argument, in this case,?use primitive alternatives.? when(mock.get(any())); // bad use, will raise NPE? when(mock.get(anyInt())); // correct usage use??Also, this error might show up because you use argument matchers with methods that cannot be mocked.?Following methods *cannot* be stubbed/verified: final/private/equals()/hashCode().?Mocking methods declared on non-public parent classes is not supported.?");2353 } catch (org.mockito.exceptions.misusing.InvalidUseOfMatchersException e) {2354 // Expected exception.2355 }2356 org.junit.Assert.assertNotNull(mockingDetails1);2357 org.junit.Assert.assertNotNull(mockingDetailsArray2);2358 }2359 @Test2360 public void test218() throws Throwable {2361 if (debug)2362 System.out.format("%n%s%n", "TestGroup100Case0.test218");2363 java.util.Collection<java.lang.Object[]> objArrayCollection0 = org.mockito.ArgumentMatchers.anyCollection();2364 org.junit.Assert.assertNotNull(objArrayCollection0);2365 }2366 @Test2367 public void test219() throws Throwable {2368 if (debug)2369 System.out.format("%n%s%n", "TestGroup100Case0.test219");2370 java.util.List<java.lang.Runnable> runnableList0 = org.mockito.ArgumentMatchers.anyList();2371 org.junit.Assert.assertNotNull(runnableList0);2372 }2373 @Test2374 public void test220() throws Throwable {2375 if (debug)2376 System.out.format("%n%s%n", "TestGroup100Case0.test220");2377 org.mockito.Mockito mockito0 = new org.mockito.Mockito();2378 java.lang.String[] strArray2 = new java.lang.String[] {};2379 java.lang.String str3 = org.mockito.ArgumentMatchers.refEq("method1", strArray2);2380 java.lang.Object[] objArray4 = org.mockito.Mockito.ignoreStubs((java.lang.Object[]) strArray2);2381 java.lang.String[] strArray5 = org.mockito.ArgumentMatchers.same(strArray2);2382 // The following exception was thrown during execution in test generation2383 try {2384 org.mockito.stubbing.Stubber stubber6 = org.mockito.Mockito.doReturn((java.lang.Object) mockito0, (java.lang.Object[]) strArray2);2385 org.junit.Assert.fail("Expected exception of type org.mockito.exceptions.misusing.InvalidUseOfMatchersException; message: ?Misplaced or misused argument matcher detected here:??-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)?-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)?-> at sun.reflect.GeneratedMethodAccessor25.invoke(Unknown Source)?-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)??You cannot use argument matchers outside of verification or stubbing.?Examples of correct usage of argument matchers:? when(mock.get(anyInt())).thenReturn(null);? doThrow(new RuntimeException()).when(mock).someVoidMethod(anyObject());? verify(mock).someMethod(contains(\"foo\"))??This message may appear after an NullPointerException if the last matcher is returning an object ?like any() but the stubbed method signature expect a primitive argument, in this case,?use primitive alternatives.? when(mock.get(any())); // bad use, will raise NPE? when(mock.get(anyInt())); // correct usage use??Also, this error might show up because you use argument matchers with methods that cannot be mocked.?Following methods *cannot* be stubbed/verified: final/private/equals()/hashCode().?Mocking methods declared on non-public parent classes is not supported.?");2386 } catch (org.mockito.exceptions.misusing.InvalidUseOfMatchersException e) {2387 // Expected exception.2388 }2389 org.junit.Assert.assertNotNull(strArray2);2390 org.junit.Assert.assertNull(str3);2391 org.junit.Assert.assertNotNull(objArray4);2392 org.junit.Assert.assertEquals(java.util.Arrays.deepToString(objArray4), "[]");2393 org.junit.Assert.assertEquals(java.util.Arrays.toString(objArray4), "[]");2394 org.junit.Assert.assertNull(strArray5);2395 }2396 @Test2397 public void test221() throws Throwable {2398 if (debug)2399 System.out.format("%n%s%n", "TestGroup100Case0.test221");2400 org.mockito.session.MockitoSessionBuilder mockitoSessionBuilder0 = org.mockito.Mockito.mockitoSession();2401 org.mockito.MockSettings mockSettings1 = org.mockito.Mockito.withSettings();2402 java.lang.Class<?> wildcardClass2 = mockSettings1.getClass();2403 org.mockito.verification.VerificationWithTimeout verificationWithTimeout4 = org.mockito.Mockito.timeout((long) (short) 100);2404 java.lang.String[] strArray5 = new java.lang.String[] {};2405 org.mockito.verification.VerificationWithTimeout verificationWithTimeout6 = org.mockito.ArgumentMatchers.refEq(verificationWithTimeout4, strArray5);2406 java.lang.reflect.AnnotatedElement annotatedElement7 = org.mockito.ArgumentMatchers.refEq((java.lang.reflect.AnnotatedElement) wildcardClass2, strArray5);2407 org.mockito.session.MockitoSessionBuilder mockitoSessionBuilder8 = org.mockito.ArgumentMatchers.refEq(mockitoSessionBuilder0, strArray5);2408 java.lang.Object[] objArray9 = new java.lang.Object[] { mockitoSessionBuilder8 };2409 org.mockito.session.MockitoSessionBuilder mockitoSessionBuilder10 = org.mockito.Mockito.mockitoSession();2410 org.mockito.MockSettings mockSettings11 = org.mockito.Mockito.withSettings();2411 java.lang.Class<?> wildcardClass12 = mockSettings11.getClass();2412 org.mockito.verification.VerificationWithTimeout verificationWithTimeout14 = org.mockito.Mockito.timeout((long) (short) 100);2413 java.lang.String[] strArray15 = new java.lang.String[] {};2414 org.mockito.verification.VerificationWithTimeout verificationWithTimeout16 = org.mockito.ArgumentMatchers.refEq(verificationWithTimeout14, strArray15);2415 java.lang.reflect.AnnotatedElement annotatedElement17 = org.mockito.ArgumentMatchers.refEq((java.lang.reflect.AnnotatedElement) wildcardClass12, strArray15);2416 org.mockito.session.MockitoSessionBuilder mockitoSessionBuilder18 = org.mockito.ArgumentMatchers.refEq(mockitoSessionBuilder10, strArray15);2417 java.lang.Object[] objArray19 = new java.lang.Object[] { mockitoSessionBuilder18 };2418 org.mockito.session.MockitoSessionBuilder mockitoSessionBuilder20 = org.mockito.Mockito.mockitoSession();2419 org.mockito.MockSettings mockSettings21 = org.mockito.Mockito.withSettings();2420 java.lang.Class<?> wildcardClass22 = mockSettings21.getClass();2421 org.mockito.verification.VerificationWithTimeout verificationWithTimeout24 = org.mockito.Mockito.timeout((long) (short) 100);2422 java.lang.String[] strArray25 = new java.lang.String[] {};2423 org.mockito.verification.VerificationWithTimeout verificationWithTimeout26 = org.mockito.ArgumentMatchers.refEq(verificationWithTimeout24, strArray25);2424 java.lang.reflect.AnnotatedElement annotatedElement27 = org.mockito.ArgumentMatchers.refEq((java.lang.reflect.AnnotatedElement) wildcardClass22, strArray25);2425 org.mockito.session.MockitoSessionBuilder mockitoSessionBuilder28 = org.mockito.ArgumentMatchers.refEq(mockitoSessionBuilder20, strArray25);2426 java.lang.Object[] objArray29 = new java.lang.Object[] { mockitoSessionBuilder28 };2427 org.mockito.session.MockitoSessionBuilder mockitoSessionBuilder30 = org.mockito.Mockito.mockitoSession();2428 org.mockito.MockSettings mockSettings31 = org.mockito.Mockito.withSettings();2429 java.lang.Class<?> wildcardClass32 = mockSettings31.getClass();2430 org.mockito.verification.VerificationWithTimeout verificationWithTimeout34 = org.mockito.Mockito.timeout((long) (short) 100);2431 java.lang.String[] strArray35 = new java.lang.String[] {};2432 org.mockito.verification.VerificationWithTimeout verificationWithTimeout36 = org.mockito.ArgumentMatchers.refEq(verificationWithTimeout34, strArray35);2433 java.lang.reflect.AnnotatedElement annotatedElement37 = org.mockito.ArgumentMatchers.refEq((java.lang.reflect.AnnotatedElement) wildcardClass32, strArray35);2434 org.mockito.session.MockitoSessionBuilder mockitoSessionBuilder38 = org.mockito.ArgumentMatchers.refEq(mockitoSessionBuilder30, strArray35);2435 java.lang.Object[] objArray39 = new java.lang.Object[] { mockitoSessionBuilder38 };2436 org.mockito.session.MockitoSessionBuilder mockitoSessionBuilder40 = org.mockito.Mockito.mockitoSession();2437 org.mockito.MockSettings mockSettings41 = org.mockito.Mockito.withSettings();2438 java.lang.Class<?> wildcardClass42 = mockSettings41.getClass();2439 org.mockito.verification.VerificationWithTimeout verificationWithTimeout44 = org.mockito.Mockito.timeout((long) (short) 100);2440 java.lang.String[] strArray45 = new java.lang.String[] {};2441 org.mockito.verification.VerificationWithTimeout verificationWithTimeout46 = org.mockito.ArgumentMatchers.refEq(verificationWithTimeout44, strArray45);2442 java.lang.reflect.AnnotatedElement annotatedElement47 = org.mockito.ArgumentMatchers.refEq((java.lang.reflect.AnnotatedElement) wildcardClass42, strArray45);2443 org.mockito.session.MockitoSessionBuilder mockitoSessionBuilder48 = org.mockito.ArgumentMatchers.refEq(mockitoSessionBuilder40, strArray45);2444 java.lang.Object[] objArray49 = new java.lang.Object[] { mockitoSessionBuilder48 };2445 java.lang.Object[][] objArray50 = new java.lang.Object[][] { objArray9, objArray19, objArray29, objArray39, objArray49 };2446 // The following exception was thrown during execution in test generation2447 try {2448 org.mockito.Mockito.reset(objArray50);2449 org.junit.Assert.fail("Expected exception of type org.mockito.exceptions.misusing.InvalidUseOfMatchersException; message: ?Misplaced or misused argument matcher detected here:??-> at sun.reflect.GeneratedMethodAccessor25.invoke(Unknown Source)?-> at sun.reflect.GeneratedMethodAccessor25.invoke(Unknown Source)?-> at sun.reflect.GeneratedMethodAccessor25.invoke(Unknown Source)?-> at sun.reflect.GeneratedMethodAccessor25.invoke(Unknown Source)?-> at sun.reflect.GeneratedMethodAccessor25.invoke(Unknown Source)?-> at sun.reflect.GeneratedMethodAccessor25.invoke(Unknown Source)?-> at sun.reflect.GeneratedMethodAccessor25.invoke(Unknown Source)?-> at sun.reflect.GeneratedMethodAccessor25.invoke(Unknown Source)?-> at sun.reflect.GeneratedMethodAccessor25.invoke(Unknown Source)?-> at sun.reflect.GeneratedMethodAccessor25.invoke(Unknown Source)?-> at sun.reflect.GeneratedMethodAccessor25.invoke(Unknown Source)?-> at sun.reflect.GeneratedMethodAccessor25.invoke(Unknown Source)?-> at sun.reflect.GeneratedMethodAccessor25.invoke(Unknown Source)?-> at sun.reflect.GeneratedMethodAccessor25.invoke(Unknown Source)?-> at sun.reflect.GeneratedMethodAccessor25.invoke(Unknown Source)??You cannot use argument matchers outside of verification or stubbing.?Examples of correct usage of argument matchers:? when(mock.get(anyInt())).thenReturn(null);? doThrow(new RuntimeException()).when(mock).someVoidMethod(anyObject());? verify(mock).someMethod(contains(\"foo\"))??This message may appear after an NullPointerException if the last matcher is returning an object ?like any() but the stubbed method signature expect a primitive argument, in this case,?use primitive alternatives.? when(mock.get(any())); // bad use, will raise NPE? when(mock.get(anyInt())); // correct usage use??Also, this error might show up because you use argument matchers with methods that cannot be mocked.?Following methods *cannot* be stubbed/verified: final/private/equals()/hashCode().?Mocking methods declared on non-public parent classes is not supported.?");2450 } catch (org.mockito.exceptions.misusing.InvalidUseOfMatchersException e) {2451 // Expected exception.2452 }2453 org.junit.Assert.assertNotNull(mockitoSessionBuilder0);2454 org.junit.Assert.assertNotNull(mockSettings1);2455 org.junit.Assert.assertNotNull(wildcardClass2);2456 org.junit.Assert.assertNotNull(verificationWithTimeout4);2457 org.junit.Assert.assertNotNull(strArray5);2458 org.junit.Assert.assertNull(verificationWithTimeout6);2459 org.junit.Assert.assertNull(annotatedElement7);2460 org.junit.Assert.assertNull(mockitoSessionBuilder8);2461 org.junit.Assert.assertNotNull(objArray9);2462 org.junit.Assert.assertEquals(java.util.Arrays.deepToString(objArray9), "[null]");2463 org.junit.Assert.assertEquals(java.util.Arrays.toString(objArray9), "[null]");2464 org.junit.Assert.assertNotNull(mockitoSessionBuilder10);2465 org.junit.Assert.assertNotNull(mockSettings11);2466 org.junit.Assert.assertNotNull(wildcardClass12);2467 org.junit.Assert.assertNotNull(verificationWithTimeout14);2468 org.junit.Assert.assertNotNull(strArray15);2469 org.junit.Assert.assertNull(verificationWithTimeout16);2470 org.junit.Assert.assertNull(annotatedElement17);2471 org.junit.Assert.assertNull(mockitoSessionBuilder18);2472 org.junit.Assert.assertNotNull(objArray19);2473 org.junit.Assert.assertEquals(java.util.Arrays.deepToString(objArray19), "[null]");2474 org.junit.Assert.assertEquals(java.util.Arrays.toString(objArray19), "[null]");2475 org.junit.Assert.assertNotNull(mockitoSessionBuilder20);2476 org.junit.Assert.assertNotNull(mockSettings21);2477 org.junit.Assert.assertNotNull(wildcardClass22);2478 org.junit.Assert.assertNotNull(verificationWithTimeout24);2479 org.junit.Assert.assertNotNull(strArray25);2480 org.junit.Assert.assertNull(verificationWithTimeout26);2481 org.junit.Assert.assertNull(annotatedElement27);2482 org.junit.Assert.assertNull(mockitoSessionBuilder28);2483 org.junit.Assert.assertNotNull(objArray29);2484 org.junit.Assert.assertEquals(java.util.Arrays.deepToString(objArray29), "[null]");2485 org.junit.Assert.assertEquals(java.util.Arrays.toString(objArray29), "[null]");2486 org.junit.Assert.assertNotNull(mockitoSessionBuilder30);2487 org.junit.Assert.assertNotNull(mockSettings31);2488 org.junit.Assert.assertNotNull(wildcardClass32);2489 org.junit.Assert.assertNotNull(verificationWithTimeout34);2490 org.junit.Assert.assertNotNull(strArray35);2491 org.junit.Assert.assertNull(verificationWithTimeout36);2492 org.junit.Assert.assertNull(annotatedElement37);2493 org.junit.Assert.assertNull(mockitoSessionBuilder38);2494 org.junit.Assert.assertNotNull(objArray39);2495 org.junit.Assert.assertEquals(java.util.Arrays.deepToString(objArray39), "[null]");2496 org.junit.Assert.assertEquals(java.util.Arrays.toString(objArray39), "[null]");2497 org.junit.Assert.assertNotNull(mockitoSessionBuilder40);2498 org.junit.Assert.assertNotNull(mockSettings41);2499 org.junit.Assert.assertNotNull(wildcardClass42);2500 org.junit.Assert.assertNotNull(verificationWithTimeout44);2501 org.junit.Assert.assertNotNull(strArray45);2502 org.junit.Assert.assertNull(verificationWithTimeout46);2503 org.junit.Assert.assertNull(annotatedElement47);2504 org.junit.Assert.assertNull(mockitoSessionBuilder48);2505 org.junit.Assert.assertNotNull(objArray49);2506 org.junit.Assert.assertEquals(java.util.Arrays.deepToString(objArray49), "[null]");2507 org.junit.Assert.assertEquals(java.util.Arrays.toString(objArray49), "[null]");2508 org.junit.Assert.assertNotNull(objArray50);2509 }2510 @Test2511 public void test222() throws Throwable {2512 if (debug)2513 System.out.format("%n%s%n", "TestGroup100Case0.test222");2514 java.lang.Runnable runnable0 = null;2515 org.apache.dubbo.common.threadlocal.InternalThread internalThread1 = new org.apache.dubbo.common.threadlocal.InternalThread(runnable0);2516 java.lang.Class<?> wildcardClass2 = internalThread1.getClass();2517 org.junit.Assert.assertNotNull(wildcardClass2);2518 }2519 @Test2520 public void test223() throws Throwable {2521 if (debug)2522 System.out.format("%n%s%n", "TestGroup100Case0.test223");2523 org.apache.dubbo.common.threadlocal.InternalThread internalThread0 = org.mockito.ArgumentMatchers.anyObject();2524 org.junit.Assert.assertNull(internalThread0);2525 }2526 @Test2527 public void test224() throws Throwable {2528 if (debug)2529 System.out.format("%n%s%n", "TestGroup100Case0.test224");2530 org.mockito.stubbing.LenientStubber lenientStubber0 = org.mockito.Mockito.lenient();2531 org.mockito.stubbing.BaseStubber baseStubber1 = org.mockito.ArgumentMatchers.eq((org.mockito.stubbing.BaseStubber) lenientStubber0);2532 // The following exception was thrown during execution in test generation2533 try {2534 org.mockito.stubbing.LenientStubber lenientStubber2 = org.mockito.Mockito.verify(lenientStubber0);2535 org.junit.Assert.fail("Expected exception of type org.mockito.exceptions.misusing.NotAMockException; message: ?Argument passed to verify() is of type DefaultLenientStubber and is not a mock!?Make sure you place the parenthesis correctly!?See the examples of correct verifications:? verify(mock).someMethod();? verify(mock, times(10)).someMethod();? verify(mock, atLeastOnce()).someMethod();");2536 } catch (org.mockito.exceptions.misusing.NotAMockException e) {2537 // Expected exception.2538 }2539 org.junit.Assert.assertNotNull(lenientStubber0);2540 org.junit.Assert.assertNull(baseStubber1);2541 }2542 @Test2543 public void test225() throws Throwable {2544 if (debug)2545 System.out.format("%n%s%n", "TestGroup100Case0.test225");2546 java.lang.Iterable<java.lang.Throwable[]> throwableArrayIterable0 = org.mockito.ArgumentMatchers.anyIterable();2547 org.junit.Assert.assertNotNull(throwableArrayIterable0);2548 }2549 @Test2550 public void test226() throws Throwable {2551 if (debug)2552 System.out.format("%n%s%n", "TestGroup100Case0.test226");2553 java.lang.ThreadGroup threadGroup0 = null;2554 java.lang.ThreadGroup threadGroup1 = null;2555 java.lang.ThreadGroup threadGroup2 = null;2556 org.apache.dubbo.common.threadlocal.InternalThread internalThread4 = new org.apache.dubbo.common.threadlocal.InternalThread(threadGroup2, "Succeeded to forking invoke provider !");2557 org.apache.dubbo.common.threadlocal.InternalThread internalThread7 = new org.apache.dubbo.common.threadlocal.InternalThread(threadGroup1, (java.lang.Runnable) internalThread4, "value", 1L);2558 org.apache.dubbo.common.threadlocal.InternalThread internalThread9 = new org.apache.dubbo.common.threadlocal.InternalThread(threadGroup0, (java.lang.Runnable) internalThread4, "method1");2559 // The following exception was thrown during execution in test generation2560 try {2561 org.mockito.stubbing.OngoingStubbing<org.apache.dubbo.common.threadlocal.InternalThread> internalThreadOngoingStubbing10 = org.mockito.Mockito.when(internalThread9);2562 org.junit.Assert.fail("Expected exception of type org.mockito.exceptions.misusing.InvalidUseOfMatchersException; message: ?Misplaced or misused argument matcher detected here:??-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)?-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)?-> at sun.reflect.GeneratedMethodAccessor25.invoke(Unknown Source)?-> at sun.reflect.GeneratedMethodAccessor25.invoke(Unknown Source)?-> at sun.reflect.GeneratedMethodAccessor25.invoke(Unknown Source)?-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)?-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)??You cannot use argument matchers outside of verification or stubbing.?Examples of correct usage of argument matchers:? when(mock.get(anyInt())).thenReturn(null);? doThrow(new RuntimeException()).when(mock).someVoidMethod(anyObject());? verify(mock).someMethod(contains(\"foo\"))??This message may appear after an NullPointerException if the last matcher is returning an object ?like any() but the stubbed method signature expect a primitive argument, in this case,?use primitive alternatives.? when(mock.get(any())); // bad use, will raise NPE? when(mock.get(anyInt())); // correct usage use??Also, this error might show up because you use argument matchers with methods that cannot be mocked.?Following methods *cannot* be stubbed/verified: final/private/equals()/hashCode().?Mocking methods declared on non-public parent classes is not supported.?");2563 } catch (org.mockito.exceptions.misusing.InvalidUseOfMatchersException e) {2564 // Expected exception.2565 }2566 }2567 @Test2568 public void test227() throws Throwable {2569 if (debug)2570 System.out.format("%n%s%n", "TestGroup100Case0.test227");2571 org.apache.dubbo.common.threadlocal.InternalThread internalThread1 = new org.apache.dubbo.common.threadlocal.InternalThread("Failed to forking invoke provider");2572 }2573 @Test2574 public void test228() throws Throwable {2575 if (debug)2576 System.out.format("%n%s%n", "TestGroup100Case0.test228");2577 java.lang.Object[] objArray0 = null;2578 // The following exception was thrown during execution in test generation2579 try {2580 java.lang.Object[] objArray1 = org.mockito.Mockito.ignoreStubs(objArray0);2581 org.junit.Assert.fail("Expected exception of type java.lang.NullPointerException; message: null");2582 } catch (java.lang.NullPointerException e) {2583 // Expected exception.2584 }2585 }2586 @Test2587 public void test229() throws Throwable {2588 if (debug)2589 System.out.format("%n%s%n", "TestGroup100Case0.test229");2590 double double1 = org.mockito.ArgumentMatchers.eq((double) (short) 1);2591 org.junit.Assert.assertTrue("'" + double1 + "' != '" + 0.0d + "'", double1 == 0.0d);2592 }2593 @Test2594 public void test230() throws Throwable {2595 if (debug)2596 System.out.format("%n%s%n", "TestGroup100Case0.test230");2597 org.mockito.verification.VerificationMode verificationMode1 = org.mockito.Mockito.atMost((int) '\000');2598 org.junit.Assert.assertNotNull(verificationMode1);2599 }2600 @Test2601 public void test231() throws Throwable {2602 if (debug)2603 System.out.format("%n%s%n", "TestGroup100Case0.test231");2604 org.mockito.MockingDetails mockingDetails1 = org.mockito.Mockito.mockingDetails((java.lang.Object) 100.0f);2605 org.junit.Assert.assertNotNull(mockingDetails1);2606 }2607 @Test2608 public void test232() throws Throwable {2609 if (debug)2610 System.out.format("%n%s%n", "TestGroup100Case0.test232");2611 org.mockito.stubbing.Answer<java.lang.Object> objAnswer0 = org.mockito.Mockito.RETURNS_DEFAULTS;2612 // The following exception was thrown during execution in test generation2613 try {2614 org.mockito.stubbing.Stubber stubber1 = org.mockito.Mockito.doAnswer((org.mockito.stubbing.Answer) objAnswer0);2615 org.junit.Assert.fail("Expected exception of type org.mockito.exceptions.misusing.InvalidUseOfMatchersException; message: ?Misplaced or misused argument matcher detected here:??-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)??You cannot use argument matchers outside of verification or stubbing.?Examples of correct usage of argument matchers:? when(mock.get(anyInt())).thenReturn(null);? doThrow(new RuntimeException()).when(mock).someVoidMethod(anyObject());? verify(mock).someMethod(contains(\"foo\"))??This message may appear after an NullPointerException if the last matcher is returning an object ?like any() but the stubbed method signature expect a primitive argument, in this case,?use primitive alternatives.? when(mock.get(any())); // bad use, will raise NPE? when(mock.get(anyInt())); // correct usage use??Also, this error might show up because you use argument matchers with methods that cannot be mocked.?Following methods *cannot* be stubbed/verified: final/private/equals()/hashCode().?Mocking methods declared on non-public parent classes is not supported.?");2616 } catch (org.mockito.exceptions.misusing.InvalidUseOfMatchersException e) {2617 // Expected exception.2618 }2619 org.junit.Assert.assertTrue("'" + objAnswer0 + "' != '" + org.mockito.Answers.RETURNS_DEFAULTS + "'", objAnswer0.equals(org.mockito.Answers.RETURNS_DEFAULTS));2620 }2621 @Test2622 public void test233() throws Throwable {2623 if (debug)2624 System.out.format("%n%s%n", "TestGroup100Case0.test233");2625 java.lang.String[] strArray1 = new java.lang.String[] {};2626 java.lang.String str2 = org.mockito.ArgumentMatchers.refEq("method1", strArray1);2627 java.lang.Object[] objArray3 = org.mockito.Mockito.ignoreStubs((java.lang.Object[]) strArray1);2628 java.lang.String[] strArray4 = org.mockito.ArgumentMatchers.same(strArray1);2629 // The following exception was thrown during execution in test generation2630 try {2631 org.mockito.Mockito.verifyNoMoreInteractions((java.lang.Object[]) strArray1);2632 org.junit.Assert.fail("Expected exception of type org.mockito.exceptions.base.MockitoException; message: ?Method requires argument(s)!?Pass mocks that should be verified, e.g:? verifyNoMoreInteractions(mockOne, mockTwo);? verifyNoInteractions(mockOne, mockTwo);?");2633 } catch (org.mockito.exceptions.base.MockitoException e) {2634 // Expected exception.2635 }2636 org.junit.Assert.assertNotNull(strArray1);2637 org.junit.Assert.assertNull(str2);2638 org.junit.Assert.assertNotNull(objArray3);2639 org.junit.Assert.assertEquals(java.util.Arrays.deepToString(objArray3), "[]");2640 org.junit.Assert.assertEquals(java.util.Arrays.toString(objArray3), "[]");2641 org.junit.Assert.assertNull(strArray4);2642 }2643 @Test2644 public void test234() throws Throwable {2645 if (debug)2646 System.out.format("%n%s%n", "TestGroup100Case0.test234");2647 float float1 = org.mockito.ArgumentMatchers.eq(10.0f);2648 org.junit.Assert.assertTrue("'" + float1 + "' != '" + 0.0f + "'", float1 == 0.0f);2649 }2650 @Test2651 public void test235() throws Throwable {2652 if (debug)2653 System.out.format("%n%s%n", "TestGroup100Case0.test235");2654 org.mockito.verification.VerificationMode verificationMode1 = org.mockito.Mockito.description("set attachment failed!");2655 org.junit.Assert.assertNotNull(verificationMode1);2656 }2657 @Test2658 public void test236() throws Throwable {2659 if (debug)2660 System.out.format("%n%s%n", "TestGroup100Case0.test236");2661 java.lang.String str1 = org.mockito.ArgumentMatchers.contains("value");2662 org.junit.Assert.assertEquals("'" + str1 + "' != '" + "" + "'", str1, "");2663 }2664 @Test2665 public void test237() throws Throwable {2666 if (debug)2667 System.out.format("%n%s%n", "TestGroup100Case0.test237");2668 org.mockito.verification.VerificationMode verificationMode1 = org.mockito.Mockito.times((int) ' ');2669 org.junit.Assert.assertNotNull(verificationMode1);2670 }2671 @Test2672 public void test238() throws Throwable {2673 if (debug)2674 System.out.format("%n%s%n", "TestGroup100Case0.test238");2675 float float1 = org.mockito.ArgumentMatchers.eq((float) '#');2676 org.junit.Assert.assertTrue("'" + float1 + "' != '" + 0.0f + "'", float1 == 0.0f);2677 }2678 @Test2679 public void test239() throws Throwable {2680 if (debug)2681 System.out.format("%n%s%n", "TestGroup100Case0.test239");2682 org.mockito.session.MockitoSessionBuilder mockitoSessionBuilder0 = org.mockito.Mockito.mockitoSession();2683 org.mockito.MockSettings mockSettings1 = org.mockito.Mockito.withSettings();2684 java.lang.Class<?> wildcardClass2 = mockSettings1.getClass();2685 org.mockito.verification.VerificationWithTimeout verificationWithTimeout4 = org.mockito.Mockito.timeout((long) (short) 100);2686 java.lang.String[] strArray5 = new java.lang.String[] {};2687 org.mockito.verification.VerificationWithTimeout verificationWithTimeout6 = org.mockito.ArgumentMatchers.refEq(verificationWithTimeout4, strArray5);2688 java.lang.reflect.AnnotatedElement annotatedElement7 = org.mockito.ArgumentMatchers.refEq((java.lang.reflect.AnnotatedElement) wildcardClass2, strArray5);2689 org.mockito.session.MockitoSessionBuilder mockitoSessionBuilder8 = org.mockito.ArgumentMatchers.refEq(mockitoSessionBuilder0, strArray5);2690 java.util.Map<java.lang.String[], java.lang.Comparable<java.lang.String>> strArrayMap9 = org.mockito.ArgumentMatchers.anyMap();2691 org.mockito.stubbing.LenientStubber lenientStubber10 = org.mockito.Mockito.lenient();2692 java.lang.Object[] objArray11 = new java.lang.Object[] { mockitoSessionBuilder8, strArrayMap9, lenientStubber10 };2693 // The following exception was thrown during execution in test generation2694 try {2695 java.lang.Object[] objArray12 = org.mockito.Mockito.ignoreStubs(objArray11);2696 org.junit.Assert.fail("Expected exception of type org.mockito.exceptions.misusing.NotAMockException; message: Argument should be a mock, but is null!");2697 } catch (org.mockito.exceptions.misusing.NotAMockException e) {2698 // Expected exception.2699 }2700 org.junit.Assert.assertNotNull(mockitoSessionBuilder0);2701 org.junit.Assert.assertNotNull(mockSettings1);2702 org.junit.Assert.assertNotNull(wildcardClass2);2703 org.junit.Assert.assertNotNull(verificationWithTimeout4);2704 org.junit.Assert.assertNotNull(strArray5);2705 org.junit.Assert.assertNull(verificationWithTimeout6);2706 org.junit.Assert.assertNull(annotatedElement7);2707 org.junit.Assert.assertNull(mockitoSessionBuilder8);2708 org.junit.Assert.assertNotNull(strArrayMap9);2709 org.junit.Assert.assertNotNull(lenientStubber10);2710 org.junit.Assert.assertNotNull(objArray11);2711 }2712 @Test2713 public void test240() throws Throwable {2714 if (debug)2715 System.out.format("%n%s%n", "TestGroup100Case0.test240");2716 org.mockito.verification.VerificationAfterDelay verificationAfterDelay1 = org.mockito.Mockito.after(100L);2717 // The following exception was thrown during execution in test generation2718 try {2719 org.mockito.stubbing.OngoingStubbing<org.mockito.verification.VerificationAfterDelay> verificationAfterDelayOngoingStubbing2 = org.mockito.Mockito.when(verificationAfterDelay1);2720 org.junit.Assert.fail("Expected exception of type org.mockito.exceptions.misusing.InvalidUseOfMatchersException; message: ?Misplaced or misused argument matcher detected here:??-> at sun.reflect.GeneratedMethodAccessor25.invoke(Unknown Source)?-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)?-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)?-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)?-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)?-> at sun.reflect.GeneratedMethodAccessor25.invoke(Unknown Source)?-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)?-> at sun.reflect.GeneratedMethodAccessor25.invoke(Unknown Source)?-> at sun.reflect.GeneratedMethodAccessor25.invoke(Unknown Source)?-> at sun.reflect.GeneratedMethodAccessor25.invoke(Unknown Source)?-> at sun.reflect.GeneratedMethodAccessor25.invoke(Unknown Source)?-> at sun.reflect.GeneratedMethodAccessor25.invoke(Unknown Source)?-> at sun.reflect.GeneratedMethodAccessor25.invoke(Unknown Source)?-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)??You cannot use argument matchers outside of verification or stubbing.?Examples of correct usage of argument matchers:? when(mock.get(anyInt())).thenReturn(null);? doThrow(new RuntimeException()).when(mock).someVoidMethod(anyObject());? verify(mock).someMethod(contains(\"foo\"))??This message may appear after an NullPointerException if the last matcher is returning an object ?like any() but the stubbed method signature expect a primitive argument, in this case,?use primitive alternatives.? when(mock.get(any())); // bad use, will raise NPE? when(mock.get(anyInt())); // correct usage use??Also, this error might show up because you use argument matchers with methods that cannot be mocked.?Following methods *cannot* be stubbed/verified: final/private/equals()/hashCode().?Mocking methods declared on non-public parent classes is not supported.?");2721 } catch (org.mockito.exceptions.misusing.InvalidUseOfMatchersException e) {2722 // Expected exception.2723 }2724 org.junit.Assert.assertNotNull(verificationAfterDelay1);2725 }2726 @Test2727 public void test241() throws Throwable {2728 if (debug)2729 System.out.format("%n%s%n", "TestGroup100Case0.test241");2730 org.mockito.verification.VerificationWithTimeout verificationWithTimeout2 = org.mockito.Mockito.timeout((long) (short) 100);2731 java.lang.String[] strArray3 = new java.lang.String[] {};2732 org.mockito.verification.VerificationWithTimeout verificationWithTimeout4 = org.mockito.ArgumentMatchers.refEq(verificationWithTimeout2, strArray3);2733 java.lang.CharSequence charSequence5 = org.mockito.ArgumentMatchers.refEq((java.lang.CharSequence) "", strArray3);2734 // The following exception was thrown during execution in test generation2735 try {2736 org.mockito.Mockito.verifyZeroInteractions((java.lang.Object[]) strArray3);2737 org.junit.Assert.fail("Expected exception of type org.mockito.exceptions.base.MockitoException; message: ?Method requires argument(s)!?Pass mocks that should be verified, e.g:? verifyNoMoreInteractions(mockOne, mockTwo);? verifyNoInteractions(mockOne, mockTwo);?");2738 } catch (org.mockito.exceptions.base.MockitoException e) {2739 // Expected exception.2740 }2741 org.junit.Assert.assertNotNull(verificationWithTimeout2);2742 org.junit.Assert.assertNotNull(strArray3);2743 org.junit.Assert.assertNull(verificationWithTimeout4);2744 org.junit.Assert.assertNull(charSequence5);2745 }2746 @Test2747 public void test242() throws Throwable {2748 if (debug)2749 System.out.format("%n%s%n", "TestGroup100Case0.test242");2750 java.util.Set<org.mockito.session.MockitoSessionBuilder> mockitoSessionBuilderSet0 = org.mockito.ArgumentMatchers.anySet();2751 org.junit.Assert.assertNotNull(mockitoSessionBuilderSet0);2752 }2753 @Test2754 public void test243() throws Throwable {2755 if (debug)2756 System.out.format("%n%s%n", "TestGroup100Case0.test243");2757 java.util.Set<org.mockito.Mockito> mockitoSet0 = org.mockito.ArgumentMatchers.anySet();2758 org.junit.Assert.assertNotNull(mockitoSet0);2759 }2760 @Test2761 public void test244() throws Throwable {2762 if (debug)2763 System.out.format("%n%s%n", "TestGroup100Case0.test244");2764 java.lang.ThreadGroup threadGroup0 = null;2765 org.apache.dubbo.common.threadlocal.InternalThread internalThread2 = new org.apache.dubbo.common.threadlocal.InternalThread(threadGroup0, "Too many thread-local indexed variables");2766 org.apache.dubbo.common.threadlocal.InternalThread internalThread3 = new org.apache.dubbo.common.threadlocal.InternalThread((java.lang.Runnable) internalThread2);2767 }2768 @Test2769 public void test245() throws Throwable {2770 if (debug)2771 System.out.format("%n%s%n", "TestGroup100Case0.test245");2772 java.lang.Throwable[] throwableArray0 = null;2773 // The following exception was thrown during execution in test generation2774 try {2775 org.mockito.stubbing.Stubber stubber1 = org.mockito.Mockito.doThrow(throwableArray0);2776 org.junit.Assert.fail("Expected exception of type org.mockito.exceptions.misusing.InvalidUseOfMatchersException; message: ?Misplaced or misused argument matcher detected here:??-> at sun.reflect.GeneratedMethodAccessor25.invoke(Unknown Source)?-> at sun.reflect.GeneratedMethodAccessor25.invoke(Unknown Source)?-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)?-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)?-> at sun.reflect.GeneratedMethodAccessor25.invoke(Unknown Source)?-> at sun.reflect.GeneratedMethodAccessor25.invoke(Unknown Source)?-> at sun.reflect.GeneratedMethodAccessor25.invoke(Unknown Source)?-> at sun.reflect.GeneratedMethodAccessor25.invoke(Unknown Source)?-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)?-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)??You cannot use argument matchers outside of verification or stubbing.?Examples of correct usage of argument matchers:? when(mock.get(anyInt())).thenReturn(null);? doThrow(new RuntimeException()).when(mock).someVoidMethod(anyObject());? verify(mock).someMethod(contains(\"foo\"))??This message may appear after an NullPointerException if the last matcher is returning an object ?like any() but the stubbed method signature expect a primitive argument, in this case,?use primitive alternatives.? when(mock.get(any())); // bad use, will raise NPE? when(mock.get(anyInt())); // correct usage use??Also, this error might show up because you use argument matchers with methods that cannot be mocked.?Following methods *cannot* be stubbed/verified: final/private/equals()/hashCode().?Mocking methods declared on non-public parent classes is not supported.?");2777 } catch (org.mockito.exceptions.misusing.InvalidUseOfMatchersException e) {2778 // Expected exception.2779 }2780 }2781 @Test2782 public void test246() throws Throwable {2783 if (debug)2784 System.out.format("%n%s%n", "TestGroup100Case0.test246");2785 double double1 = org.mockito.ArgumentMatchers.eq((double) 'a');2786 org.junit.Assert.assertTrue("'" + double1 + "' != '" + 0.0d + "'", double1 == 0.0d);2787 }2788 @Test2789 public void test247() throws Throwable {2790 if (debug)2791 System.out.format("%n%s%n", "TestGroup100Case0.test247");2792 // The following exception was thrown during execution in test generation2793 try {2794 java.lang.String str1 = org.mockito.Mockito.verify("Succeeded to forking invoke provider !");2795 org.junit.Assert.fail("Expected exception of type org.mockito.exceptions.misusing.NotAMockException; message: ?Argument passed to verify() is of type String and is not a mock!?Make sure you place the parenthesis correctly!?See the examples of correct verifications:? verify(mock).someMethod();? verify(mock, times(10)).someMethod();? verify(mock, atLeastOnce()).someMethod();");2796 } catch (org.mockito.exceptions.misusing.NotAMockException e) {2797 // Expected exception.2798 }2799 }2800 @Test2801 public void test248() throws Throwable {2802 if (debug)2803 System.out.format("%n%s%n", "TestGroup100Case0.test248");2804 java.lang.Throwable throwable0 = null;2805 java.lang.Throwable[] throwableArray1 = new java.lang.Throwable[] { throwable0 };2806 java.lang.Throwable[][] throwableArray2 = new java.lang.Throwable[][] { throwableArray1 };2807 // The following exception was thrown during execution in test generation2808 try {2809 org.mockito.Mockito.reset(throwableArray2);2810 org.junit.Assert.fail("Expected exception of type org.mockito.exceptions.misusing.InvalidUseOfMatchersException; message: ?Misplaced or misused argument matcher detected here:??-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)??You cannot use argument matchers outside of verification or stubbing.?Examples of correct usage of argument matchers:? when(mock.get(anyInt())).thenReturn(null);? doThrow(new RuntimeException()).when(mock).someVoidMethod(anyObject());? verify(mock).someMethod(contains(\"foo\"))??This message may appear after an NullPointerException if the last matcher is returning an object ?like any() but the stubbed method signature expect a primitive argument, in this case,?use primitive alternatives.? when(mock.get(any())); // bad use, will raise NPE? when(mock.get(anyInt())); // correct usage use??Also, this error might show up because you use argument matchers with methods that cannot be mocked.?Following methods *cannot* be stubbed/verified: final/private/equals()/hashCode().?Mocking methods declared on non-public parent classes is not supported.?");2811 } catch (org.mockito.exceptions.misusing.InvalidUseOfMatchersException e) {2812 // Expected exception.2813 }2814 org.junit.Assert.assertNotNull(throwableArray1);2815 org.junit.Assert.assertNotNull(throwableArray2);2816 }2817 @Test2818 public void test249() throws Throwable {2819 if (debug)2820 System.out.format("%n%s%n", "TestGroup100Case0.test249");2821 long long1 = org.mockito.ArgumentMatchers.eq(0L);2822 org.junit.Assert.assertTrue("'" + long1 + "' != '" + 0L + "'", long1 == 0L);2823 }2824 @Test2825 public void test250() throws Throwable {2826 if (debug)2827 System.out.format("%n%s%n", "TestGroup100Case0.test250");2828 java.lang.String[] strArray1 = new java.lang.String[] {};2829 java.lang.String str2 = org.mockito.ArgumentMatchers.refEq("method1", strArray1);2830 java.lang.Object[] objArray3 = org.mockito.Mockito.ignoreStubs((java.lang.Object[]) strArray1);2831 java.lang.String[] strArray4 = org.mockito.ArgumentMatchers.same(strArray1);2832 org.mockito.MockSettings mockSettings5 = org.mockito.Mockito.withSettings();2833 java.lang.Class<?> wildcardClass6 = mockSettings5.getClass();2834 org.mockito.verification.VerificationWithTimeout verificationWithTimeout8 = org.mockito.Mockito.timeout((long) (short) 100);2835 java.lang.String[] strArray9 = new java.lang.String[] {};2836 org.mockito.verification.VerificationWithTimeout verificationWithTimeout10 = org.mockito.ArgumentMatchers.refEq(verificationWithTimeout8, strArray9);2837 java.lang.reflect.AnnotatedElement annotatedElement11 = org.mockito.ArgumentMatchers.refEq((java.lang.reflect.AnnotatedElement) wildcardClass6, strArray9);2838 java.lang.Object[] objArray12 = org.mockito.ArgumentMatchers.refEq((java.lang.Object[]) strArray4, strArray9);2839 // The following exception was thrown during execution in test generation2840 try {2841 org.mockito.Mockito.reset((java.io.Serializable[]) strArray9);2842 org.junit.Assert.fail("Expected exception of type org.mockito.exceptions.misusing.InvalidUseOfMatchersException; message: ?Misplaced or misused argument matcher detected here:??-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)?-> at sun.reflect.GeneratedMethodAccessor25.invoke(Unknown Source)?-> at sun.reflect.GeneratedMethodAccessor31.invoke(Unknown Source)?-> at sun.reflect.GeneratedMethodAccessor25.invoke(Unknown Source)?-> at sun.reflect.GeneratedMethodAccessor25.invoke(Unknown Source)?-> at sun.reflect.GeneratedMethodAccessor25.invoke(Unknown Source)??You cannot use argument matchers outside of verification or stubbing.?Examples of correct usage of argument matchers:? when(mock.get(anyInt())).thenReturn(null);? doThrow(new RuntimeException()).when(mock).someVoidMethod(anyObject());? verify(mock).someMethod(contains(\"foo\"))??This message may appear after an NullPointerException if the last matcher is returning an object ?like any() but the stubbed method signature expect a primitive argument, in this case,?use primitive alternatives.? when(mock.get(any())); // bad use, will raise NPE? when(mock.get(anyInt())); // correct usage use??Also, this error might show up because you use argument matchers with methods that cannot be mocked.?Following methods *cannot* be stubbed/verified: final/private/equals()/hashCode().?Mocking methods declared on non-public parent classes is not supported.?");2843 } catch (org.mockito.exceptions.misusing.InvalidUseOfMatchersException e) {2844 // Expected exception.2845 }2846 org.junit.Assert.assertNotNull(strArray1);2847 org.junit.Assert.assertNull(str2);2848 org.junit.Assert.assertNotNull(objArray3);2849 org.junit.Assert.assertEquals(java.util.Arrays.deepToString(objArray3), "[]");2850 org.junit.Assert.assertEquals(java.util.Arrays.toString(objArray3), "[]");2851 org.junit.Assert.assertNull(strArray4);2852 org.junit.Assert.assertNotNull(mockSettings5);2853 org.junit.Assert.assertNotNull(wildcardClass6);2854 org.junit.Assert.assertNotNull(verificationWithTimeout8);2855 org.junit.Assert.assertNotNull(strArray9);2856 org.junit.Assert.assertNull(verificationWithTimeout10);2857 org.junit.Assert.assertNull(annotatedElement11);2858 org.junit.Assert.assertNull(objArray12);2859 }2860 @Test2861 public void test251() throws Throwable {2862 if (debug)2863 System.out.format("%n%s%n", "TestGroup100Case0.test251");2864 org.mockito.stubbing.Answer<java.lang.Object> objAnswer0 = org.mockito.Mockito.RETURNS_SELF;2865 org.mockito.stubbing.Stubber stubber1 = null; // flaky: org.mockito.Mockito.doAnswer((org.mockito.stubbing.Answer) objAnswer0);2866 org.junit.Assert.assertTrue("'" + objAnswer0 + "' != '" + org.mockito.Answers.RETURNS_SELF + "'", objAnswer0.equals(org.mockito.Answers.RETURNS_SELF));2867// flaky: org.junit.Assert.assertNotNull(stubber1);2868 }2869 @Test2870 public void test252() throws Throwable {2871 if (debug)2872 System.out.format("%n%s%n", "TestGroup100Case0.test252");2873 // The following exception was thrown during execution in test generation2874 try {2875 org.mockito.verification.VerificationWithTimeout verificationWithTimeout1 = org.mockito.Mockito.timeout((-1L));2876 org.junit.Assert.fail("Expected exception of type org.mockito.exceptions.misusing.FriendlyReminderException; message: ??Don't panic! I'm just a friendly reminder!?It is impossible for time to go backward, therefore...?You cannot put negative value of duration: (-1)?as argument of timer methods (after(), timeout())?");2877 } catch (org.mockito.exceptions.misusing.FriendlyReminderException e) {2878 // Expected exception.2879 }2880 }2881 @Test2882 public void test253() throws Throwable {2883 if (debug)2884 System.out.format("%n%s%n", "TestGroup100Case0.test253");2885 org.mockito.stubbing.Stubber stubber0 = org.mockito.ArgumentMatchers.notNull();2886 org.junit.Assert.assertNull(stubber0);2887 }2888 @Test2889 public void test254() throws Throwable {2890 if (debug)2891 System.out.format("%n%s%n", "TestGroup100Case0.test254");2892 java.lang.ThreadGroup threadGroup0 = null;2893 java.lang.Runnable runnable1 = null;2894 org.apache.dubbo.common.threadlocal.InternalThread internalThread4 = new org.apache.dubbo.common.threadlocal.InternalThread(threadGroup0, runnable1, "hi!", (-1L));2895 }2896 @Test2897 public void test255() throws Throwable {2898 if (debug)2899 System.out.format("%n%s%n", "TestGroup100Case0.test255");2900 long long1 = org.mockito.ArgumentMatchers.eq(1L);2901 org.junit.Assert.assertTrue("'" + long1 + "' != '" + 0L + "'", long1 == 0L);2902 }2903 @Test2904 public void test256() throws Throwable {2905 if (debug)2906 System.out.format("%n%s%n", "TestGroup100Case0.test256");2907 java.util.List<org.mockito.verification.VerificationWithTimeout> verificationWithTimeoutList0 = org.mockito.ArgumentMatchers.anyList();2908 org.junit.Assert.assertNotNull(verificationWithTimeoutList0);2909 }2910 @Test2911 public void test257() throws Throwable {2912 if (debug)2913 System.out.format("%n%s%n", "TestGroup100Case0.test257");2914 java.lang.Iterable<org.mockito.stubbing.LenientStubber> lenientStubberIterable0 = org.mockito.ArgumentMatchers.anyIterable();2915 org.junit.Assert.assertNotNull(lenientStubberIterable0);2916 }2917 @Test2918 public void test258() throws Throwable {2919 if (debug)2920 System.out.format("%n%s%n", "TestGroup100Case0.test258");2921 org.mockito.verification.VerificationMode verificationMode0 = org.mockito.ArgumentMatchers.any();2922 org.junit.Assert.assertNull(verificationMode0);2923 }2924 @Test2925 public void test259() throws Throwable {2926 if (debug)2927 System.out.format("%n%s%n", "TestGroup100Case0.test259");2928 java.util.Set<java.lang.String> strSet0 = org.mockito.ArgumentMatchers.anySet();2929 org.junit.Assert.assertNotNull(strSet0);2930 }2931 @Test2932 public void test260() throws Throwable {2933 if (debug)2934 System.out.format("%n%s%n", "TestGroup100Case0.test260");2935 double double1 = org.mockito.ArgumentMatchers.eq((double) (short) -1);2936 org.junit.Assert.assertTrue("'" + double1 + "' != '" + 0.0d + "'", double1 == 0.0d);2937 }2938 @Test2939 public void test261() throws Throwable {2940 if (debug)2941 System.out.format("%n%s%n", "TestGroup100Case0.test261");2942 java.io.Serializable serializable0 = org.mockito.ArgumentMatchers.notNull();2943 org.junit.Assert.assertNull(serializable0);2944 }2945 @Test2946 public void test262() throws Throwable {2947 if (debug)2948 System.out.format("%n%s%n", "TestGroup100Case0.test262");2949 java.lang.String[] strArray1 = new java.lang.String[] {};2950 java.lang.String str2 = org.mockito.ArgumentMatchers.refEq("method1", strArray1);2951 // The following exception was thrown during execution in test generation2952 try {2953 org.mockito.InOrder inOrder3 = org.mockito.Mockito.inOrder((java.lang.Object[]) strArray1);2954 org.junit.Assert.fail("Expected exception of type org.mockito.exceptions.base.MockitoException; message: ?Method requires argument(s)!?Pass mocks that require verification in order.?For example:? InOrder inOrder = inOrder(mockOne, mockTwo);");2955 } catch (org.mockito.exceptions.base.MockitoException e) {2956 // Expected exception.2957 }2958 org.junit.Assert.assertNotNull(strArray1);2959 org.junit.Assert.assertNull(str2);2960 }2961 @Test2962 public void test263() throws Throwable {2963 if (debug)2964 System.out.format("%n%s%n", "TestGroup100Case0.test263");2965 java.util.Map<java.util.List<java.lang.reflect.GenericDeclaration>, java.lang.Object> genericDeclarationListMap0 = org.mockito.ArgumentMatchers.anyMap();2966 org.junit.Assert.assertNotNull(genericDeclarationListMap0);2967 }2968 @Test2969 public void test264() throws Throwable {2970 if (debug)2971 System.out.format("%n%s%n", "TestGroup100Case0.test264");2972 java.lang.reflect.GenericDeclaration genericDeclaration0 = null;2973 // The following exception was thrown during execution in test generation2974 try {2975 java.lang.reflect.GenericDeclaration genericDeclaration1 = org.mockito.Mockito.spy(genericDeclaration0);2976 org.junit.Assert.fail("Expected exception of type java.lang.NullPointerException; message: null");2977 } catch (java.lang.NullPointerException e) {2978 // Expected exception.2979 }2980 }2981 @Test2982 public void test265() throws Throwable {2983 if (debug)2984 System.out.format("%n%s%n", "TestGroup100Case0.test265");2985 org.mockito.verification.VerificationMode verificationMode0 = org.mockito.ArgumentMatchers.notNull();2986 org.junit.Assert.assertNull(verificationMode0);2987 }2988 @Test2989 public void test266() throws Throwable {2990 if (debug)2991 System.out.format("%n%s%n", "TestGroup100Case0.test266");2992 java.lang.String str1 = org.mockito.ArgumentMatchers.startsWith("clear attachment failed!");2993 org.junit.Assert.assertEquals("'" + str1 + "' != '" + "" + "'", str1, "");2994 }2995 @Test2996 public void test267() throws Throwable {2997 if (debug)2998 System.out.format("%n%s%n", "TestGroup100Case0.test267");2999 java.util.Map<org.mockito.session.MockitoSessionBuilder, java.lang.Class<?>> mockitoSessionBuilderMap0 = org.mockito.ArgumentMatchers.anyMap();3000 org.junit.Assert.assertNotNull(mockitoSessionBuilderMap0);3001 }3002 @Test3003 public void test268() throws Throwable {3004 if (debug)3005 System.out.format("%n%s%n", "TestGroup100Case0.test268");3006 org.mockito.verification.VerificationMode verificationMode1 = org.mockito.Mockito.calls((int) (short) 10);3007 org.junit.Assert.assertNotNull(verificationMode1);3008 }3009 @Test3010 public void test269() throws Throwable {3011 if (debug)3012 System.out.format("%n%s%n", "TestGroup100Case0.test269");3013 // The following exception was thrown during execution in test generation3014 try {3015 org.mockito.verification.VerificationMode verificationMode1 = org.mockito.Mockito.calls((int) (short) -1);3016 org.junit.Assert.fail("Expected exception of type org.mockito.exceptions.base.MockitoException; message: Negative and zero values are not allowed here");3017 } catch (org.mockito.exceptions.base.MockitoException e) {3018 // Expected exception.3019 }3020 }3021 @Test3022 public void test270() throws Throwable {3023 if (debug)3024 System.out.format("%n%s%n", "TestGroup100Case0.test270");3025 java.lang.String[] strArray2 = new java.lang.String[] {};3026 java.lang.String str3 = org.mockito.ArgumentMatchers.refEq("method1", strArray2);3027 java.lang.Object[] objArray4 = org.mockito.Mockito.ignoreStubs((java.lang.Object[]) strArray2);3028 // The following exception was thrown during execution in test generation3029 try {3030 org.mockito.stubbing.Stubber stubber5 = org.mockito.Mockito.doReturn((java.lang.Object) "Too many thread-local indexed variables", objArray4);3031 org.junit.Assert.fail("Expected exception of type org.mockito.exceptions.misusing.InvalidUseOfMatchersException; message: ?Misplaced or misused argument matcher detected here:??-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)?-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)?-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)?-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)?-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)?-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)?-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)?-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)?-> at sun.reflect.GeneratedMethodAccessor25.invoke(Unknown Source)?-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)?-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)?-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)?-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)?-> at sun.reflect.GeneratedMethodAccessor25.invoke(Unknown Source)??You cannot use argument matchers outside of verification or stubbing.?Examples of correct usage of argument matchers:? when(mock.get(anyInt())).thenReturn(null);? doThrow(new RuntimeException()).when(mock).someVoidMethod(anyObject());? verify(mock).someMethod(contains(\"foo\"))??This message may appear after an NullPointerException if the last matcher is returning an object ?like any() but the stubbed method signature expect a primitive argument, in this case,?use primitive alternatives.? when(mock.get(any())); // bad use, will raise NPE? when(mock.get(anyInt())); // correct usage use??Also, this error might show up because you use argument matchers with methods that cannot be mocked.?Following methods *cannot* be stubbed/verified: final/private/equals()/hashCode().?Mocking methods declared on non-public parent classes is not supported.?");3032 } catch (org.mockito.exceptions.misusing.InvalidUseOfMatchersException e) {3033 // Expected exception.3034 }3035 org.junit.Assert.assertNotNull(strArray2);3036 org.junit.Assert.assertNull(str3);3037 org.junit.Assert.assertNotNull(objArray4);3038 org.junit.Assert.assertEquals(java.util.Arrays.deepToString(objArray4), "[]");3039 org.junit.Assert.assertEquals(java.util.Arrays.toString(objArray4), "[]");3040 }3041 @Test3042 public void test271() throws Throwable {3043 if (debug)3044 System.out.format("%n%s%n", "TestGroup100Case0.test271");3045 org.mockito.verification.VerificationAfterDelay verificationAfterDelay1 = org.mockito.Mockito.after(100L);3046 org.mockito.verification.VerificationAfterDelay verificationAfterDelay3 = org.mockito.Mockito.after((long) ' ');3047 org.mockito.verification.VerificationAfterDelay verificationAfterDelay5 = org.mockito.Mockito.after(0L);3048 org.mockito.verification.VerificationAfterDelay[] verificationAfterDelayArray6 = new org.mockito.verification.VerificationAfterDelay[] { verificationAfterDelay1, verificationAfterDelay3, verificationAfterDelay5 };3049 // The following exception was thrown during execution in test generation3050 try {3051// flaky: org.mockito.Mockito.reset(verificationAfterDelayArray6);3052// flaky: org.junit.Assert.fail("Expected exception of type org.mockito.exceptions.misusing.UnfinishedStubbingException; message: ?Unfinished stubbing detected here:?-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)??E.g. thenReturn() may be missing.?Examples of correct stubbing:? when(mock.isOk()).thenReturn(true);? when(mock.isOk()).thenThrow(exception);? doThrow(exception).when(mock).someVoidMethod();?Hints:? 1. missing thenReturn()? 2. you are trying to stub a final method, which is not supported? 3. you are stubbing the behaviour of another mock inside before 'thenReturn' instruction is completed?");3053 } catch (org.mockito.exceptions.misusing.UnfinishedStubbingException e) {3054 // Expected exception.3055 }3056 org.junit.Assert.assertNotNull(verificationAfterDelay1);3057 org.junit.Assert.assertNotNull(verificationAfterDelay3);3058 org.junit.Assert.assertNotNull(verificationAfterDelay5);3059 org.junit.Assert.assertNotNull(verificationAfterDelayArray6);3060 }3061 @Test3062 public void test272() throws Throwable {3063 if (debug)3064 System.out.format("%n%s%n", "TestGroup100Case0.test272");3065 java.lang.ThreadGroup threadGroup0 = null;3066 java.lang.ThreadGroup threadGroup1 = null;3067 org.apache.dubbo.common.threadlocal.InternalThread internalThread3 = new org.apache.dubbo.common.threadlocal.InternalThread(threadGroup1, "method1");3068 org.apache.dubbo.common.threadlocal.InternalThread internalThread4 = new org.apache.dubbo.common.threadlocal.InternalThread(threadGroup0, (java.lang.Runnable) internalThread3);3069 }3070 @Test3071 public void test273() throws Throwable {3072 if (debug)3073 System.out.format("%n%s%n", "TestGroup100Case0.test273");3074 java.lang.Object obj0 = org.mockito.ArgumentMatchers.isNull();3075 org.junit.Assert.assertNull(obj0);3076 }3077 @Test3078 public void test274() throws Throwable {3079 if (debug)3080 System.out.format("%n%s%n", "TestGroup100Case0.test274");3081 java.lang.String str0 = org.mockito.ArgumentMatchers.anyVararg();3082 org.junit.Assert.assertNull(str0);3083 }3084 @Test3085 public void test275() throws Throwable {3086 if (debug)3087 System.out.format("%n%s%n", "TestGroup100Case0.test275");3088 java.lang.String str1 = org.mockito.ArgumentMatchers.matches("method1");3089 org.junit.Assert.assertEquals("'" + str1 + "' != '" + "" + "'", str1, "");3090 }3091 @Test3092 public void test276() throws Throwable {3093 if (debug)3094 System.out.format("%n%s%n", "TestGroup100Case0.test276");3095 java.lang.String str1 = org.mockito.ArgumentMatchers.contains("Too many thread-local indexed variables");3096 org.junit.Assert.assertEquals("'" + str1 + "' != '" + "" + "'", str1, "");3097 }3098 @Test3099 public void test277() throws Throwable {3100 if (debug)3101 System.out.format("%n%s%n", "TestGroup100Case0.test277");3102 org.apache.dubbo.common.threadlocal.InternalThread internalThread1 = new org.apache.dubbo.common.threadlocal.InternalThread("method1");3103 }3104 @Test3105 public void test278() throws Throwable {3106 if (debug)3107 System.out.format("%n%s%n", "TestGroup100Case0.test278");3108 java.lang.Runnable runnable0 = null;3109 org.apache.dubbo.common.threadlocal.InternalThread internalThread1 = new org.apache.dubbo.common.threadlocal.InternalThread(runnable0);3110 java.lang.ThreadGroup threadGroup2 = null;3111 org.apache.dubbo.common.threadlocal.InternalThread internalThread4 = new org.apache.dubbo.common.threadlocal.InternalThread(threadGroup2, "Too many thread-local indexed variables");3112 org.apache.dubbo.common.threadlocal.InternalThreadLocalMap internalThreadLocalMap5 = internalThread4.threadLocalMap();3113 java.lang.ThreadGroup threadGroup6 = null;3114 org.apache.dubbo.common.threadlocal.InternalThread internalThread8 = new org.apache.dubbo.common.threadlocal.InternalThread("attach");3115 org.apache.dubbo.common.threadlocal.InternalThread internalThread9 = new org.apache.dubbo.common.threadlocal.InternalThread((java.lang.Runnable) internalThread8);3116 org.apache.dubbo.common.threadlocal.InternalThread internalThread10 = new org.apache.dubbo.common.threadlocal.InternalThread(threadGroup6, (java.lang.Runnable) internalThread9);3117 java.lang.Thread[] threadArray11 = new java.lang.Thread[] { internalThread1, internalThread4, internalThread9 };3118 // The following exception was thrown during execution in test generation3119 try {3120 org.mockito.Mockito.reset(threadArray11);3121 org.junit.Assert.fail("Expected exception of type org.mockito.exceptions.misusing.InvalidUseOfMatchersException; message: ?Misplaced or misused argument matcher detected here:??-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)?-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)?-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)?-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)??You cannot use argument matchers outside of verification or stubbing.?Examples of correct usage of argument matchers:? when(mock.get(anyInt())).thenReturn(null);? doThrow(new RuntimeException()).when(mock).someVoidMethod(anyObject());? verify(mock).someMethod(contains(\"foo\"))??This message may appear after an NullPointerException if the last matcher is returning an object ?like any() but the stubbed method signature expect a primitive argument, in this case,?use primitive alternatives.? when(mock.get(any())); // bad use, will raise NPE? when(mock.get(anyInt())); // correct usage use??Also, this error might show up because you use argument matchers with methods that cannot be mocked.?Following methods *cannot* be stubbed/verified: final/private/equals()/hashCode().?Mocking methods declared on non-public parent classes is not supported.?");3122 } catch (org.mockito.exceptions.misusing.InvalidUseOfMatchersException e) {3123 // Expected exception.3124 }3125 org.junit.Assert.assertNull(internalThreadLocalMap5);3126 org.junit.Assert.assertNotNull(threadArray11);3127 }3128 @Test3129 public void test279() throws Throwable {3130 if (debug)3131 System.out.format("%n%s%n", "TestGroup100Case0.test279");3132 org.mockito.verification.VerificationMode verificationMode1 = org.mockito.Mockito.atLeast((int) (byte) 1);3133 org.mockito.stubbing.Stubber stubber2 = null; // flaky: org.mockito.Mockito.doReturn((java.lang.Object) (byte) 1);3134 org.junit.Assert.assertNotNull(verificationMode1);3135// flaky: org.junit.Assert.assertNotNull(stubber2);3136 }3137 @Test3138 public void test280() throws Throwable {3139 if (debug)3140 System.out.format("%n%s%n", "TestGroup100Case0.test280");3141 java.lang.String[] strArray2 = new java.lang.String[] {};3142 java.lang.String str3 = org.mockito.ArgumentMatchers.refEq("method1", strArray2);3143 java.lang.String str4 = org.mockito.ArgumentMatchers.refEq("set attachment failed!", strArray2);3144 // The following exception was thrown during execution in test generation3145 try {3146 org.mockito.Mockito.verifyNoMoreInteractions((java.lang.Object[]) strArray2);3147 org.junit.Assert.fail("Expected exception of type org.mockito.exceptions.base.MockitoException; message: ?Method requires argument(s)!?Pass mocks that should be verified, e.g:? verifyNoMoreInteractions(mockOne, mockTwo);? verifyNoInteractions(mockOne, mockTwo);?");3148 } catch (org.mockito.exceptions.base.MockitoException e) {3149 // Expected exception.3150 }3151 org.junit.Assert.assertNotNull(strArray2);3152 org.junit.Assert.assertNull(str3);3153 org.junit.Assert.assertNull(str4);3154 }3155 @Test3156 public void test281() throws Throwable {3157 if (debug)3158 System.out.format("%n%s%n", "TestGroup100Case0.test281");3159 org.mockito.verification.VerificationMode verificationMode1 = org.mockito.Mockito.atMost((int) ' ');3160 java.lang.String[] strArray3 = new java.lang.String[] {};3161 java.lang.String str4 = org.mockito.ArgumentMatchers.refEq("method1", strArray3);3162 java.lang.Object[] objArray5 = org.mockito.Mockito.ignoreStubs((java.lang.Object[]) strArray3);3163 // The following exception was thrown during execution in test generation3164 try {3165 org.mockito.stubbing.Stubber stubber6 = org.mockito.Mockito.doReturn((java.lang.Object) verificationMode1, objArray5);3166 org.junit.Assert.fail("Expected exception of type org.mockito.exceptions.misusing.InvalidUseOfMatchersException; message: ?Misplaced or misused argument matcher detected here:??-> at sun.reflect.GeneratedMethodAccessor25.invoke(Unknown Source)?-> at sun.reflect.GeneratedMethodAccessor25.invoke(Unknown Source)?-> at sun.reflect.GeneratedMethodAccessor25.invoke(Unknown Source)??You cannot use argument matchers outside of verification or stubbing.?Examples of correct usage of argument matchers:? when(mock.get(anyInt())).thenReturn(null);? doThrow(new RuntimeException()).when(mock).someVoidMethod(anyObject());? verify(mock).someMethod(contains(\"foo\"))??This message may appear after an NullPointerException if the last matcher is returning an object ?like any() but the stubbed method signature expect a primitive argument, in this case,?use primitive alternatives.? when(mock.get(any())); // bad use, will raise NPE? when(mock.get(anyInt())); // correct usage use??Also, this error might show up because you use argument matchers with methods that cannot be mocked.?Following methods *cannot* be stubbed/verified: final/private/equals()/hashCode().?Mocking methods declared on non-public parent classes is not supported.?");3167 } catch (org.mockito.exceptions.misusing.InvalidUseOfMatchersException e) {3168 // Expected exception.3169 }3170 org.junit.Assert.assertNotNull(verificationMode1);3171 org.junit.Assert.assertNotNull(strArray3);3172 org.junit.Assert.assertNull(str4);3173 org.junit.Assert.assertNotNull(objArray5);3174 org.junit.Assert.assertEquals(java.util.Arrays.deepToString(objArray5), "[]");3175 org.junit.Assert.assertEquals(java.util.Arrays.toString(objArray5), "[]");3176 }3177 @Test3178 public void test282() throws Throwable {3179 if (debug)3180 System.out.format("%n%s%n", "TestGroup100Case0.test282");3181 java.util.List<java.lang.reflect.Type> typeList0 = org.mockito.ArgumentMatchers.anyList();3182 org.junit.Assert.assertNotNull(typeList0);3183 }3184 @Test3185 public void test283() throws Throwable {3186 if (debug)3187 System.out.format("%n%s%n", "TestGroup100Case0.test283");3188 java.lang.Iterable<org.mockito.stubbing.BaseStubber> baseStubberIterable0 = org.mockito.ArgumentMatchers.anyIterable();3189 org.junit.Assert.assertNotNull(baseStubberIterable0);3190 }3191 @Test3192 public void test284() throws Throwable {3193 if (debug)3194 System.out.format("%n%s%n", "TestGroup100Case0.test284");3195 org.mockito.stubbing.LenientStubber lenientStubber0 = org.mockito.ArgumentMatchers.isNotNull();3196 org.junit.Assert.assertNull(lenientStubber0);3197 }3198 @Test3199 public void test285() throws Throwable {3200 if (debug)3201 System.out.format("%n%s%n", "TestGroup100Case0.test285");3202 java.lang.ThreadGroup threadGroup0 = null;3203 org.apache.dubbo.common.threadlocal.InternalThread internalThread2 = new org.apache.dubbo.common.threadlocal.InternalThread("attach");3204 org.apache.dubbo.common.threadlocal.InternalThread internalThread3 = new org.apache.dubbo.common.threadlocal.InternalThread((java.lang.Runnable) internalThread2);3205 org.apache.dubbo.common.threadlocal.InternalThread internalThread5 = new org.apache.dubbo.common.threadlocal.InternalThread((java.lang.Runnable) internalThread2, "Succeeded to forking invoke provider !");3206 org.apache.dubbo.common.threadlocal.InternalThreadLocalMap internalThreadLocalMap6 = internalThread2.threadLocalMap();3207 org.apache.dubbo.common.threadlocal.InternalThread internalThread7 = new org.apache.dubbo.common.threadlocal.InternalThread(threadGroup0, (java.lang.Runnable) internalThread2);3208 org.junit.Assert.assertNull(internalThreadLocalMap6);3209 }3210 @Test3211 public void test286() throws Throwable {3212 if (debug)3213 System.out.format("%n%s%n", "TestGroup100Case0.test286");3214 java.lang.CharSequence charSequence0 = org.mockito.ArgumentMatchers.any();3215 org.junit.Assert.assertNull(charSequence0);3216 }3217 @Test3218 public void test287() throws Throwable {3219 if (debug)3220 System.out.format("%n%s%n", "TestGroup100Case0.test287");3221 java.lang.ThreadGroup threadGroup0 = null;3222 java.lang.ThreadGroup threadGroup1 = null;3223 org.apache.dubbo.common.threadlocal.InternalThread internalThread3 = new org.apache.dubbo.common.threadlocal.InternalThread(threadGroup1, "Succeeded to forking invoke provider !");3224 org.apache.dubbo.common.threadlocal.InternalThread internalThread6 = new org.apache.dubbo.common.threadlocal.InternalThread(threadGroup0, (java.lang.Runnable) internalThread3, "value", 1L);3225 org.apache.dubbo.common.threadlocal.InternalThreadLocalMap internalThreadLocalMap7 = internalThread6.threadLocalMap();3226 java.lang.Object[] objArray8 = new java.lang.Object[] { internalThread6 };3227 // The following exception was thrown during execution in test generation3228 try {3229 org.mockito.Mockito.verifyNoInteractions(objArray8);3230 org.junit.Assert.fail("Expected exception of type org.mockito.exceptions.misusing.InvalidUseOfMatchersException; message: ?Misplaced or misused argument matcher detected here:??-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)?-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)?-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)?-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)??You cannot use argument matchers outside of verification or stubbing.?Examples of correct usage of argument matchers:? when(mock.get(anyInt())).thenReturn(null);? doThrow(new RuntimeException()).when(mock).someVoidMethod(anyObject());? verify(mock).someMethod(contains(\"foo\"))??This message may appear after an NullPointerException if the last matcher is returning an object ?like any() but the stubbed method signature expect a primitive argument, in this case,?use primitive alternatives.? when(mock.get(any())); // bad use, will raise NPE? when(mock.get(anyInt())); // correct usage use??Also, this error might show up because you use argument matchers with methods that cannot be mocked.?Following methods *cannot* be stubbed/verified: final/private/equals()/hashCode().?Mocking methods declared on non-public parent classes is not supported.?");3231 } catch (org.mockito.exceptions.misusing.InvalidUseOfMatchersException e) {3232 // Expected exception.3233 }3234 org.junit.Assert.assertNull(internalThreadLocalMap7);3235 org.junit.Assert.assertNotNull(objArray8);3236 org.junit.Assert.assertEquals(java.util.Arrays.deepToString(objArray8), "[Thread[value,5,main]]");3237 org.junit.Assert.assertEquals(java.util.Arrays.toString(objArray8), "[Thread[value,5,main]]");3238 }3239 @Test3240 public void test288() throws Throwable {3241 if (debug)3242 System.out.format("%n%s%n", "TestGroup100Case0.test288");3243 org.apache.dubbo.common.threadlocal.InternalThread internalThread1 = new org.apache.dubbo.common.threadlocal.InternalThread("attach");3244 java.lang.Thread thread2 = org.mockito.ArgumentMatchers.eq((java.lang.Thread) internalThread1);3245 org.apache.dubbo.common.threadlocal.InternalThread internalThread4 = new org.apache.dubbo.common.threadlocal.InternalThread((java.lang.Runnable) internalThread1, "Too many thread-local indexed variables");3246 org.junit.Assert.assertNull(thread2);3247 }3248 @Test3249 public void test289() throws Throwable {3250 if (debug)3251 System.out.format("%n%s%n", "TestGroup100Case0.test289");3252 // The following exception was thrown during execution in test generation3253 try {3254 java.io.Serializable serializable1 = org.mockito.Mockito.spy((java.io.Serializable) "Failed to forking invoke provider");3255 org.junit.Assert.fail("Expected exception of type org.mockito.exceptions.base.MockitoException; message: ?Cannot mock/spy class java.lang.String?Mockito cannot mock/spy because :? - final class");3256 } catch (org.mockito.exceptions.base.MockitoException e) {3257 // Expected exception.3258 }3259 }3260 @Test3261 public void test290() throws Throwable {3262 if (debug)3263 System.out.format("%n%s%n", "TestGroup100Case0.test290");3264 org.mockito.verification.VerificationWithTimeout verificationWithTimeout0 = org.mockito.ArgumentMatchers.isNull();3265 org.junit.Assert.assertNull(verificationWithTimeout0);3266 }3267 @Test3268 public void test291() throws Throwable {3269 if (debug)3270 System.out.format("%n%s%n", "TestGroup100Case0.test291");3271 java.lang.ThreadGroup threadGroup0 = null;3272 java.lang.ThreadGroup threadGroup1 = null;3273 org.apache.dubbo.common.threadlocal.InternalThread internalThread3 = new org.apache.dubbo.common.threadlocal.InternalThread("attach");3274 org.apache.dubbo.common.threadlocal.InternalThread internalThread4 = new org.apache.dubbo.common.threadlocal.InternalThread((java.lang.Runnable) internalThread3);3275 org.apache.dubbo.common.threadlocal.InternalThread internalThread5 = new org.apache.dubbo.common.threadlocal.InternalThread(threadGroup1, (java.lang.Runnable) internalThread4);3276 org.apache.dubbo.common.threadlocal.InternalThread internalThread6 = new org.apache.dubbo.common.threadlocal.InternalThread((java.lang.Runnable) internalThread5);3277 org.apache.dubbo.common.threadlocal.InternalThread internalThread7 = new org.apache.dubbo.common.threadlocal.InternalThread((java.lang.Runnable) internalThread6);3278 org.apache.dubbo.common.threadlocal.InternalThread internalThread9 = new org.apache.dubbo.common.threadlocal.InternalThread(threadGroup0, (java.lang.Runnable) internalThread6, "");3279 }3280 @Test3281 public void test292() throws Throwable {3282 if (debug)3283 System.out.format("%n%s%n", "TestGroup100Case0.test292");3284 java.lang.Iterable<org.mockito.Mockito> mockitoIterable0 = org.mockito.ArgumentMatchers.anyIterable();3285 org.mockito.verification.VerificationMode verificationMode2 = org.mockito.Mockito.atLeast((int) (byte) 1);3286 // The following exception was thrown during execution in test generation3287 try {3288 java.lang.Iterable<org.mockito.Mockito> mockitoIterable3 = org.mockito.Mockito.verify(mockitoIterable0, verificationMode2);3289 org.junit.Assert.fail("Expected exception of type org.mockito.exceptions.misusing.NotAMockException; message: ?Argument passed to verify() is of type ArrayList and is not a mock!?Make sure you place the parenthesis correctly!?See the examples of correct verifications:? verify(mock).someMethod();? verify(mock, times(10)).someMethod();? verify(mock, atLeastOnce()).someMethod();");3290 } catch (org.mockito.exceptions.misusing.NotAMockException e) {3291 // Expected exception.3292 }3293 org.junit.Assert.assertNotNull(mockitoIterable0);3294 org.junit.Assert.assertNotNull(verificationMode2);3295 }3296 @Test3297 public void test293() throws Throwable {3298 if (debug)3299 System.out.format("%n%s%n", "TestGroup100Case0.test293");3300 org.mockito.Mockito mockito0 = new org.mockito.Mockito();3301 org.mockito.Mockito mockito1 = org.mockito.ArgumentMatchers.eq(mockito0);3302 org.junit.Assert.assertNull(mockito1);3303 }3304 @Test3305 public void test294() throws Throwable {3306 if (debug)3307 System.out.format("%n%s%n", "TestGroup100Case0.test294");3308 org.mockito.verification.VerificationMode verificationMode1 = org.mockito.Mockito.calls(10);3309 org.junit.Assert.assertNotNull(verificationMode1);3310 }3311 @Test3312 public void test295() throws Throwable {3313 if (debug)3314 System.out.format("%n%s%n", "TestGroup100Case0.test295");3315 java.lang.ThreadGroup threadGroup0 = null;3316 org.apache.dubbo.common.threadlocal.InternalThread internalThread2 = new org.apache.dubbo.common.threadlocal.InternalThread(threadGroup0, "clear attachment failed!");3317 }3318 @Test3319 public void test296() throws Throwable {3320 if (debug)3321 System.out.format("%n%s%n", "TestGroup100Case0.test296");3322 org.mockito.verification.VerificationAfterDelay verificationAfterDelay1 = org.mockito.Mockito.after((long) '\000');3323 org.mockito.verification.VerificationAfterDelay verificationAfterDelay2 = org.mockito.ArgumentMatchers.same(verificationAfterDelay1);3324 org.junit.Assert.assertNotNull(verificationAfterDelay1);3325 org.junit.Assert.assertNull(verificationAfterDelay2);3326 }3327 @Test3328 public void test297() throws Throwable {3329 if (debug)3330 System.out.format("%n%s%n", "TestGroup100Case0.test297");3331 double double1 = org.mockito.ArgumentMatchers.eq((double) 100L);3332 org.junit.Assert.assertTrue("'" + double1 + "' != '" + 0.0d + "'", double1 == 0.0d);3333 }3334 @Test3335 public void test298() throws Throwable {3336 if (debug)3337 System.out.format("%n%s%n", "TestGroup100Case0.test298");3338 java.lang.String str1 = org.mockito.ArgumentMatchers.endsWith("hi!");3339 org.junit.Assert.assertEquals("'" + str1 + "' != '" + "" + "'", str1, "");3340 }3341 @Test3342 public void test299() throws Throwable {3343 if (debug)3344 System.out.format("%n%s%n", "TestGroup100Case0.test299");3345 org.mockito.stubbing.Stubber stubber0 = org.mockito.ArgumentMatchers.isNotNull();3346 org.junit.Assert.assertNull(stubber0);3347 }3348 @Test3349 public void test300() throws Throwable {3350 if (debug)3351 System.out.format("%n%s%n", "TestGroup100Case0.test300");3352 org.mockito.verification.VerificationMode verificationMode1 = org.mockito.Mockito.times(1);3353 org.junit.Assert.assertNotNull(verificationMode1);3354 }3355 @Test3356 public void test301() throws Throwable {3357 if (debug)3358 System.out.format("%n%s%n", "TestGroup100Case0.test301");3359 org.mockito.verification.VerificationWithTimeout verificationWithTimeout1 = org.mockito.Mockito.timeout((long) (short) 100);3360 java.lang.String[] strArray2 = new java.lang.String[] {};3361 org.mockito.verification.VerificationWithTimeout verificationWithTimeout3 = org.mockito.ArgumentMatchers.refEq(verificationWithTimeout1, strArray2);3362 java.lang.Class<?> wildcardClass4 = verificationWithTimeout1.getClass();3363 org.junit.Assert.assertNotNull(verificationWithTimeout1);3364 org.junit.Assert.assertNotNull(strArray2);3365 org.junit.Assert.assertNull(verificationWithTimeout3);3366 org.junit.Assert.assertNotNull(wildcardClass4);3367 }3368 @Test3369 public void test302() throws Throwable {3370 if (debug)3371 System.out.format("%n%s%n", "TestGroup100Case0.test302");3372 java.lang.Runnable runnable0 = org.mockito.ArgumentMatchers.notNull();3373 org.junit.Assert.assertNull(runnable0);3374 }3375 @Test3376 public void test303() throws Throwable {3377 if (debug)3378 System.out.format("%n%s%n", "TestGroup100Case0.test303");3379 java.lang.ThreadGroup threadGroup0 = null;3380 org.apache.dubbo.common.threadlocal.InternalThread internalThread2 = new org.apache.dubbo.common.threadlocal.InternalThread(threadGroup0, "method1");3381 org.apache.dubbo.common.threadlocal.InternalThread internalThread3 = new org.apache.dubbo.common.threadlocal.InternalThread((java.lang.Runnable) internalThread2);3382 }3383 @Test3384 public void test304() throws Throwable {3385 if (debug)3386 System.out.format("%n%s%n", "TestGroup100Case0.test304");3387 java.lang.Iterable<org.mockito.Mockito> mockitoIterable0 = org.mockito.ArgumentMatchers.anyIterable();3388 org.mockito.MockSettings mockSettings1 = org.mockito.Mockito.withSettings();3389 java.lang.Class<?> wildcardClass2 = mockSettings1.getClass();3390 org.mockito.verification.VerificationWithTimeout verificationWithTimeout4 = org.mockito.Mockito.timeout((long) (short) 100);3391 java.lang.String[] strArray5 = new java.lang.String[] {};3392 org.mockito.verification.VerificationWithTimeout verificationWithTimeout6 = org.mockito.ArgumentMatchers.refEq(verificationWithTimeout4, strArray5);3393 java.lang.reflect.AnnotatedElement annotatedElement7 = org.mockito.ArgumentMatchers.refEq((java.lang.reflect.AnnotatedElement) wildcardClass2, strArray5);3394 java.lang.Iterable<org.mockito.Mockito> mockitoIterable8 = org.mockito.ArgumentMatchers.refEq(mockitoIterable0, strArray5);3395 // The following exception was thrown during execution in test generation3396 try {3397 java.lang.Iterable<org.mockito.Mockito> mockitoIterable9 = org.mockito.Mockito.verify(mockitoIterable0);3398 org.junit.Assert.fail("Expected exception of type org.mockito.exceptions.misusing.NotAMockException; message: ?Argument passed to verify() is of type ArrayList and is not a mock!?Make sure you place the parenthesis correctly!?See the examples of correct verifications:? verify(mock).someMethod();? verify(mock, times(10)).someMethod();? verify(mock, atLeastOnce()).someMethod();");3399 } catch (org.mockito.exceptions.misusing.NotAMockException e) {3400 // Expected exception.3401 }3402 org.junit.Assert.assertNotNull(mockitoIterable0);3403 org.junit.Assert.assertNotNull(mockSettings1);3404 org.junit.Assert.assertNotNull(wildcardClass2);3405 org.junit.Assert.assertNotNull(verificationWithTimeout4);3406 org.junit.Assert.assertNotNull(strArray5);3407 org.junit.Assert.assertNull(verificationWithTimeout6);3408 org.junit.Assert.assertNull(annotatedElement7);3409 org.junit.Assert.assertNull(mockitoIterable8);3410 }3411 @Test3412 public void test305() throws Throwable {3413 if (debug)3414 System.out.format("%n%s%n", "TestGroup100Case0.test305");3415 java.util.List<java.lang.Comparable<java.lang.String>> strComparableList0 = org.mockito.ArgumentMatchers.anyList();3416 java.util.Collection<java.lang.Comparable<java.lang.String>> strComparableCollection1 = org.mockito.ArgumentMatchers.eq((java.util.Collection<java.lang.Comparable<java.lang.String>>) strComparableList0);3417 org.junit.Assert.assertNotNull(strComparableList0);3418 org.junit.Assert.assertNull(strComparableCollection1);3419 }3420 @Test3421 public void test306() throws Throwable {3422 if (debug)3423 System.out.format("%n%s%n", "TestGroup100Case0.test306");3424 java.lang.Iterable<org.mockito.Mockito> mockitoIterable0 = org.mockito.ArgumentMatchers.anyIterable();3425 org.mockito.MockSettings mockSettings1 = org.mockito.Mockito.withSettings();3426 java.lang.Class<?> wildcardClass2 = mockSettings1.getClass();3427 org.mockito.verification.VerificationWithTimeout verificationWithTimeout4 = org.mockito.Mockito.timeout((long) (short) 100);3428 java.lang.String[] strArray5 = new java.lang.String[] {};3429 org.mockito.verification.VerificationWithTimeout verificationWithTimeout6 = org.mockito.ArgumentMatchers.refEq(verificationWithTimeout4, strArray5);3430 java.lang.reflect.AnnotatedElement annotatedElement7 = org.mockito.ArgumentMatchers.refEq((java.lang.reflect.AnnotatedElement) wildcardClass2, strArray5);3431 java.lang.Iterable<org.mockito.Mockito> mockitoIterable8 = org.mockito.ArgumentMatchers.refEq(mockitoIterable0, strArray5);3432 org.mockito.verification.VerificationMode verificationMode10 = org.mockito.Mockito.calls((int) ' ');3433 // The following exception was thrown during execution in test generation3434 try {3435 java.lang.Iterable<org.mockito.Mockito> mockitoIterable11 = org.mockito.Mockito.verify(mockitoIterable8, verificationMode10);3436 org.junit.Assert.fail("Expected exception of type org.mockito.exceptions.misusing.NullInsteadOfMockException; message: ?Argument passed to verify() should be a mock but is null!?Examples of correct verifications:? verify(mock).someMethod();? verify(mock, times(10)).someMethod();? verify(mock, atLeastOnce()).someMethod();? not: verify(mock.someMethod());?Also, if you use @Mock annotation don't miss openMocks()");3437 } catch (org.mockito.exceptions.misusing.NullInsteadOfMockException e) {3438 // Expected exception.3439 }3440 org.junit.Assert.assertNotNull(mockitoIterable0);3441 org.junit.Assert.assertNotNull(mockSettings1);3442 org.junit.Assert.assertNotNull(wildcardClass2);3443 org.junit.Assert.assertNotNull(verificationWithTimeout4);3444 org.junit.Assert.assertNotNull(strArray5);3445 org.junit.Assert.assertNull(verificationWithTimeout6);3446 org.junit.Assert.assertNull(annotatedElement7);3447 org.junit.Assert.assertNull(mockitoIterable8);3448 org.junit.Assert.assertNotNull(verificationMode10);3449 }3450 @Test3451 public void test307() throws Throwable {3452 if (debug)3453 System.out.format("%n%s%n", "TestGroup100Case0.test307");3454 org.mockito.verification.VerificationMode verificationMode1 = org.mockito.Mockito.atMost((int) 'a');3455 org.junit.Assert.assertNotNull(verificationMode1);3456 }3457 @Test3458 public void test308() throws Throwable {3459 if (debug)3460 System.out.format("%n%s%n", "TestGroup100Case0.test308");3461 java.lang.Object obj0 = org.mockito.ArgumentMatchers.isNotNull();3462 org.junit.Assert.assertNull(obj0);3463 }3464 @Test3465 public void test309() throws Throwable {3466 if (debug)3467 System.out.format("%n%s%n", "TestGroup100Case0.test309");3468 java.util.List<org.mockito.Mockito> mockitoList0 = org.mockito.ArgumentMatchers.anyList();3469 org.junit.Assert.assertNotNull(mockitoList0);3470 }3471 @Test3472 public void test310() throws Throwable {3473 if (debug)3474 System.out.format("%n%s%n", "TestGroup100Case0.test310");3475 java.lang.Class<?> wildcardClass0 = org.mockito.ArgumentMatchers.isNotNull();3476 org.junit.Assert.assertNull(wildcardClass0);3477 }3478 @Test3479 public void test311() throws Throwable {3480 if (debug)3481 System.out.format("%n%s%n", "TestGroup100Case0.test311");3482 org.mockito.verification.VerificationAfterDelay verificationAfterDelay1 = org.mockito.Mockito.after(100L);3483 java.lang.String[] strArray3 = new java.lang.String[] {};3484 java.lang.String str4 = org.mockito.ArgumentMatchers.refEq("method1", strArray3);3485 java.lang.Object[] objArray5 = org.mockito.Mockito.ignoreStubs((java.lang.Object[]) strArray3);3486 java.lang.String[] strArray6 = org.mockito.ArgumentMatchers.same(strArray3);3487 org.mockito.verification.VerificationAfterDelay verificationAfterDelay7 = org.mockito.ArgumentMatchers.refEq(verificationAfterDelay1, strArray6);3488 org.junit.Assert.assertNotNull(verificationAfterDelay1);3489 org.junit.Assert.assertNotNull(strArray3);3490 org.junit.Assert.assertNull(str4);3491 org.junit.Assert.assertNotNull(objArray5);3492 org.junit.Assert.assertEquals(java.util.Arrays.deepToString(objArray5), "[]");3493 org.junit.Assert.assertEquals(java.util.Arrays.toString(objArray5), "[]");3494 org.junit.Assert.assertNull(strArray6);3495 org.junit.Assert.assertNull(verificationAfterDelay7);3496 }3497 @Test3498 public void test312() throws Throwable {3499 if (debug)3500 System.out.format("%n%s%n", "TestGroup100Case0.test312");3501 org.mockito.verification.VerificationAfterDelay verificationAfterDelay1 = org.mockito.Mockito.after((long) ' ');3502 org.mockito.MockingDetails mockingDetails2 = org.mockito.Mockito.mockingDetails((java.lang.Object) ' ');3503 // The following exception was thrown during execution in test generation3504 try {3505 java.lang.Object obj3 = org.mockito.Mockito.spy((java.lang.Object) mockingDetails2);3506 org.junit.Assert.fail("Expected exception of type org.mockito.exceptions.misusing.InvalidUseOfMatchersException; message: ?Misplaced or misused argument matcher detected here:??-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)?-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)?-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)?-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)?-> at sun.reflect.GeneratedMethodAccessor31.invoke(Unknown Source)?-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)?-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)?-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)?-> at sun.reflect.GeneratedMethodAccessor25.invoke(Unknown Source)?-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)?-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)?-> at sun.reflect.GeneratedMethodAccessor25.invoke(Unknown Source)?-> at sun.reflect.GeneratedMethodAccessor25.invoke(Unknown Source)?-> at sun.reflect.GeneratedMethodAccessor25.invoke(Unknown Source)?-> at sun.reflect.GeneratedMethodAccessor32.invoke(Unknown Source)?-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)?-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)?-> at sun.reflect.GeneratedMethodAccessor25.invoke(Unknown Source)?-> at sun.reflect.GeneratedMethodAccessor25.invoke(Unknown Source)?-> at sun.reflect.GeneratedMethodAccessor25.invoke(Unknown Source)?-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)?-> at sun.reflect.GeneratedMethodAccessor32.invoke(Unknown Source)?-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)?-> at sun.reflect.GeneratedMethodAccessor25.invoke(Unknown Source)?-> at sun.reflect.GeneratedMethodAccessor31.invoke(Unknown Source)?-> at sun.reflect.GeneratedMethodAccessor25.invoke(Unknown Source)??You cannot use argument matchers outside of verification or stubbing.?Examples of correct usage of argument matchers:? when(mock.get(anyInt())).thenReturn(null);? doThrow(new RuntimeException()).when(mock).someVoidMethod(anyObject());? verify(mock).someMethod(contains(\"foo\"))??This message may appear after an NullPointerException if the last matcher is returning an object ?like any() but the stubbed method signature expect a primitive argument, in this case,?use primitive alternatives.? when(mock.get(any())); // bad use, will raise NPE? when(mock.get(anyInt())); // correct usage use??Also, this error might show up because you use argument matchers with methods that cannot be mocked.?Following methods *cannot* be stubbed/verified: final/private/equals()/hashCode().?Mocking methods declared on non-public parent classes is not supported.?");3507 } catch (org.mockito.exceptions.misusing.InvalidUseOfMatchersException e) {3508 // Expected exception.3509 }3510 org.junit.Assert.assertNotNull(verificationAfterDelay1);3511 org.junit.Assert.assertNotNull(mockingDetails2);3512 }3513 @Test3514 public void test313() throws Throwable {3515 if (debug)3516 System.out.format("%n%s%n", "TestGroup100Case0.test313");3517 int int1 = org.mockito.ArgumentMatchers.eq(1);3518 org.junit.Assert.assertTrue("'" + int1 + "' != '" + 0 + "'", int1 == 0);3519 }3520 @Test3521 public void test314() throws Throwable {3522 if (debug)3523 System.out.format("%n%s%n", "TestGroup100Case0.test314");3524 java.lang.ThreadGroup threadGroup0 = null;3525 org.apache.dubbo.common.threadlocal.InternalThread internalThread2 = new org.apache.dubbo.common.threadlocal.InternalThread("attach");3526 org.apache.dubbo.common.threadlocal.InternalThread internalThread3 = new org.apache.dubbo.common.threadlocal.InternalThread((java.lang.Runnable) internalThread2);3527 org.apache.dubbo.common.threadlocal.InternalThread internalThread4 = new org.apache.dubbo.common.threadlocal.InternalThread(threadGroup0, (java.lang.Runnable) internalThread3);3528 org.apache.dubbo.common.threadlocal.InternalThreadLocalMap internalThreadLocalMap5 = internalThread4.threadLocalMap();3529 org.apache.dubbo.common.threadlocal.InternalThreadLocalMap internalThreadLocalMap6 = internalThread4.threadLocalMap();3530 org.junit.Assert.assertNull(internalThreadLocalMap5);3531 org.junit.Assert.assertNull(internalThreadLocalMap6);3532 }3533 @Test3534 public void test315() throws Throwable {3535 if (debug)3536 System.out.format("%n%s%n", "TestGroup100Case0.test315");3537 org.mockito.verification.VerificationAfterDelay verificationAfterDelay1 = org.mockito.Mockito.after((long) (short) 0);3538 org.junit.Assert.assertNotNull(verificationAfterDelay1);3539 }3540 @Test3541 public void test316() throws Throwable {3542 if (debug)3543 System.out.format("%n%s%n", "TestGroup100Case0.test316");3544 org.mockito.stubbing.Answer answer0 = null;3545 // The following exception was thrown during execution in test generation3546 try {3547 org.mockito.stubbing.Stubber stubber1 = org.mockito.Mockito.doAnswer(answer0);3548 org.junit.Assert.fail("Expected exception of type org.mockito.exceptions.misusing.InvalidUseOfMatchersException; message: ?Misplaced or misused argument matcher detected here:??-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)??You cannot use argument matchers outside of verification or stubbing.?Examples of correct usage of argument matchers:? when(mock.get(anyInt())).thenReturn(null);? doThrow(new RuntimeException()).when(mock).someVoidMethod(anyObject());? verify(mock).someMethod(contains(\"foo\"))??This message may appear after an NullPointerException if the last matcher is returning an object ?like any() but the stubbed method signature expect a primitive argument, in this case,?use primitive alternatives.? when(mock.get(any())); // bad use, will raise NPE? when(mock.get(anyInt())); // correct usage use??Also, this error might show up because you use argument matchers with methods that cannot be mocked.?Following methods *cannot* be stubbed/verified: final/private/equals()/hashCode().?Mocking methods declared on non-public parent classes is not supported.?");3549 } catch (org.mockito.exceptions.misusing.InvalidUseOfMatchersException e) {3550 // Expected exception.3551 }3552 }3553 @Test3554 public void test317() throws Throwable {3555 if (debug)3556 System.out.format("%n%s%n", "TestGroup100Case0.test317");3557 org.mockito.stubbing.Answer<java.lang.Object> objAnswer0 = org.mockito.Mockito.RETURNS_DEEP_STUBS;3558 // The following exception was thrown during execution in test generation3559 try {3560 org.mockito.stubbing.Stubber stubber1 = org.mockito.Mockito.doAnswer((org.mockito.stubbing.Answer) objAnswer0);3561// flaky: org.junit.Assert.fail("Expected exception of type org.mockito.exceptions.misusing.UnfinishedStubbingException; message: ?Unfinished stubbing detected here:?-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)??E.g. thenReturn() may be missing.?Examples of correct stubbing:? when(mock.isOk()).thenReturn(true);? when(mock.isOk()).thenThrow(exception);? doThrow(exception).when(mock).someVoidMethod();?Hints:? 1. missing thenReturn()? 2. you are trying to stub a final method, which is not supported? 3. you are stubbing the behaviour of another mock inside before 'thenReturn' instruction is completed?");3562 } catch (org.mockito.exceptions.misusing.UnfinishedStubbingException e) {3563 // Expected exception.3564 }3565 org.junit.Assert.assertTrue("'" + objAnswer0 + "' != '" + org.mockito.Answers.RETURNS_DEEP_STUBS + "'", objAnswer0.equals(org.mockito.Answers.RETURNS_DEEP_STUBS));3566 }3567 @Test3568 public void test318() throws Throwable {3569 if (debug)3570 System.out.format("%n%s%n", "TestGroup100Case0.test318");3571 java.lang.ThreadGroup threadGroup0 = null;3572 org.apache.dubbo.common.threadlocal.InternalThread internalThread2 = new org.apache.dubbo.common.threadlocal.InternalThread(threadGroup0, "set attachment failed!");3573 org.apache.dubbo.common.threadlocal.InternalThread internalThread4 = new org.apache.dubbo.common.threadlocal.InternalThread((java.lang.Runnable) internalThread2, "value");3574 }3575 @Test3576 public void test319() throws Throwable {3577 if (debug)3578 System.out.format("%n%s%n", "TestGroup100Case0.test319");3579 org.mockito.MockingDetails mockingDetails0 = org.mockito.ArgumentMatchers.anyVararg();3580 org.junit.Assert.assertNull(mockingDetails0);3581 }3582 @Test3583 public void test320() throws Throwable {3584 if (debug)3585 System.out.format("%n%s%n", "TestGroup100Case0.test320");3586 org.mockito.stubbing.LenientStubber lenientStubber0 = org.mockito.Mockito.lenient();3587 org.mockito.stubbing.BaseStubber baseStubber1 = org.mockito.ArgumentMatchers.eq((org.mockito.stubbing.BaseStubber) lenientStubber0);3588 // The following exception was thrown during execution in test generation3589 try {3590 org.mockito.stubbing.OngoingStubbing<org.mockito.stubbing.LenientStubber> lenientStubberOngoingStubbing2 = org.mockito.Mockito.when(lenientStubber0);3591 org.junit.Assert.fail("Expected exception of type org.mockito.exceptions.misusing.InvalidUseOfMatchersException; message: ?Misplaced or misused argument matcher detected here:??-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)?-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)??You cannot use argument matchers outside of verification or stubbing.?Examples of correct usage of argument matchers:? when(mock.get(anyInt())).thenReturn(null);? doThrow(new RuntimeException()).when(mock).someVoidMethod(anyObject());? verify(mock).someMethod(contains(\"foo\"))??This message may appear after an NullPointerException if the last matcher is returning an object ?like any() but the stubbed method signature expect a primitive argument, in this case,?use primitive alternatives.? when(mock.get(any())); // bad use, will raise NPE? when(mock.get(anyInt())); // correct usage use??Also, this error might show up because you use argument matchers with methods that cannot be mocked.?Following methods *cannot* be stubbed/verified: final/private/equals()/hashCode().?Mocking methods declared on non-public parent classes is not supported.?");3592 } catch (org.mockito.exceptions.misusing.InvalidUseOfMatchersException e) {3593 // Expected exception.3594 }3595 org.junit.Assert.assertNotNull(lenientStubber0);3596 org.junit.Assert.assertNull(baseStubber1);3597 }3598 @Test3599 public void test321() throws Throwable {3600 if (debug)3601 System.out.format("%n%s%n", "TestGroup100Case0.test321");3602 java.util.List<java.lang.String[]> strArrayList0 = org.mockito.ArgumentMatchers.anyList();3603 org.junit.Assert.assertNotNull(strArrayList0);3604 }3605 @Test3606 public void test322() throws Throwable {3607 if (debug)3608 System.out.format("%n%s%n", "TestGroup100Case0.test322");3609 org.mockito.stubbing.BaseStubber baseStubber0 = org.mockito.ArgumentMatchers.notNull();3610 org.junit.Assert.assertNull(baseStubber0);3611 }3612 @Test3613 public void test323() throws Throwable {3614 if (debug)3615 System.out.format("%n%s%n", "TestGroup100Case0.test323");3616 org.mockito.verification.VerificationAfterDelay verificationAfterDelay0 = org.mockito.ArgumentMatchers.notNull();3617 org.junit.Assert.assertNull(verificationAfterDelay0);3618 }3619 @Test3620 public void test324() throws Throwable {3621 if (debug)3622 System.out.format("%n%s%n", "TestGroup100Case0.test324");3623 org.mockito.stubbing.Answer<java.lang.Object> objAnswer0 = org.mockito.Mockito.RETURNS_DEFAULTS;3624 // The following exception was thrown during execution in test generation3625 try {3626 org.mockito.stubbing.OngoingStubbing<org.mockito.stubbing.Answer<java.lang.Object>> objAnswerOngoingStubbing1 = org.mockito.Mockito.when(objAnswer0);3627 org.junit.Assert.fail("Expected exception of type org.mockito.exceptions.misusing.InvalidUseOfMatchersException; message: ?Misplaced or misused argument matcher detected here:??-> at sun.reflect.GeneratedMethodAccessor32.invoke(Unknown Source)?-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)?-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)??You cannot use argument matchers outside of verification or stubbing.?Examples of correct usage of argument matchers:? when(mock.get(anyInt())).thenReturn(null);? doThrow(new RuntimeException()).when(mock).someVoidMethod(anyObject());? verify(mock).someMethod(contains(\"foo\"))??This message may appear after an NullPointerException if the last matcher is returning an object ?like any() but the stubbed method signature expect a primitive argument, in this case,?use primitive alternatives.? when(mock.get(any())); // bad use, will raise NPE? when(mock.get(anyInt())); // correct usage use??Also, this error might show up because you use argument matchers with methods that cannot be mocked.?Following methods *cannot* be stubbed/verified: final/private/equals()/hashCode().?Mocking methods declared on non-public parent classes is not supported.?");3628 } catch (org.mockito.exceptions.misusing.InvalidUseOfMatchersException e) {3629 // Expected exception.3630 }3631 org.junit.Assert.assertTrue("'" + objAnswer0 + "' != '" + org.mockito.Answers.RETURNS_DEFAULTS + "'", objAnswer0.equals(org.mockito.Answers.RETURNS_DEFAULTS));3632 }3633 @Test3634 public void test325() throws Throwable {3635 if (debug)3636 System.out.format("%n%s%n", "TestGroup100Case0.test325");3637 org.mockito.verification.VerificationWithTimeout verificationWithTimeout0 = null;3638 // The following exception was thrown during execution in test generation3639 try {3640 org.mockito.verification.VerificationWithTimeout verificationWithTimeout1 = org.mockito.Mockito.verify(verificationWithTimeout0);3641 org.junit.Assert.fail("Expected exception of type org.mockito.exceptions.misusing.NullInsteadOfMockException; message: ?Argument passed to verify() should be a mock but is null!?Examples of correct verifications:? verify(mock).someMethod();? verify(mock, times(10)).someMethod();? verify(mock, atLeastOnce()).someMethod();? not: verify(mock.someMethod());?Also, if you use @Mock annotation don't miss openMocks()");3642 } catch (org.mockito.exceptions.misusing.NullInsteadOfMockException e) {3643 // Expected exception.3644 }3645 }3646 @Test3647 public void test326() throws Throwable {3648 if (debug)3649 System.out.format("%n%s%n", "TestGroup100Case0.test326");3650 org.mockito.verification.VerificationMode verificationMode1 = org.mockito.Mockito.atMost((int) (byte) 0);3651 org.junit.Assert.assertNotNull(verificationMode1);3652 }3653 @Test3654 public void test327() throws Throwable {3655 if (debug)3656 System.out.format("%n%s%n", "TestGroup100Case0.test327");3657 java.lang.Iterable<org.apache.dubbo.common.threadlocal.InternalThread> internalThreadIterable0 = org.mockito.ArgumentMatchers.anyIterable();3658 org.junit.Assert.assertNotNull(internalThreadIterable0);3659 }3660 @Test3661 public void test328() throws Throwable {3662 if (debug)3663 System.out.format("%n%s%n", "TestGroup100Case0.test328");3664 long long1 = org.mockito.ArgumentMatchers.eq((long) (byte) 100);3665 org.junit.Assert.assertTrue("'" + long1 + "' != '" + 0L + "'", long1 == 0L);3666 }3667 @Test3668 public void test329() throws Throwable {3669 if (debug)3670 System.out.format("%n%s%n", "TestGroup100Case0.test329");3671 org.mockito.verification.VerificationWithTimeout verificationWithTimeout2 = org.mockito.Mockito.timeout((long) (short) 100);3672 java.lang.String[] strArray3 = new java.lang.String[] {};3673 org.mockito.verification.VerificationWithTimeout verificationWithTimeout4 = org.mockito.ArgumentMatchers.refEq(verificationWithTimeout2, strArray3);3674 java.lang.CharSequence charSequence5 = org.mockito.ArgumentMatchers.refEq((java.lang.CharSequence) "", strArray3);3675 // The following exception was thrown during execution in test generation3676 try {3677 org.mockito.InOrder inOrder6 = org.mockito.Mockito.inOrder((java.lang.Object[]) strArray3);3678 org.junit.Assert.fail("Expected exception of type org.mockito.exceptions.base.MockitoException; message: ?Method requires argument(s)!?Pass mocks that require verification in order.?For example:? InOrder inOrder = inOrder(mockOne, mockTwo);");3679 } catch (org.mockito.exceptions.base.MockitoException e) {3680 // Expected exception.3681 }3682 org.junit.Assert.assertNotNull(verificationWithTimeout2);3683 org.junit.Assert.assertNotNull(strArray3);3684 org.junit.Assert.assertNull(verificationWithTimeout4);3685 org.junit.Assert.assertNull(charSequence5);3686 }3687 @Test3688 public void test330() throws Throwable {3689 if (debug)3690 System.out.format("%n%s%n", "TestGroup100Case0.test330");3691 // The following exception was thrown during execution in test generation3692 try {3693 org.mockito.verification.VerificationMode verificationMode1 = org.mockito.Mockito.calls((int) (byte) -1);3694 org.junit.Assert.fail("Expected exception of type org.mockito.exceptions.base.MockitoException; message: Negative and zero values are not allowed here");3695 } catch (org.mockito.exceptions.base.MockitoException e) {3696 // Expected exception.3697 }3698 }3699 @Test3700 public void test331() throws Throwable {3701 if (debug)3702 System.out.format("%n%s%n", "TestGroup100Case0.test331");3703 org.mockito.verification.VerificationMode verificationMode1 = org.mockito.Mockito.description("Succeeded to forking invoke provider !");3704 org.junit.Assert.assertNotNull(verificationMode1);3705 }3706 @Test3707 public void test332() throws Throwable {3708 if (debug)3709 System.out.format("%n%s%n", "TestGroup100Case0.test332");3710 org.mockito.verification.VerificationMode verificationMode0 = org.mockito.Mockito.atLeastOnce();3711 java.lang.Class<?> wildcardClass1 = verificationMode0.getClass();3712 org.mockito.verification.VerificationMode verificationMode2 = org.mockito.Mockito.never();3713 // The following exception was thrown during execution in test generation3714 try {3715 java.lang.reflect.Type type3 = org.mockito.Mockito.verify((java.lang.reflect.Type) wildcardClass1, verificationMode2);3716 org.junit.Assert.fail("Expected exception of type org.mockito.exceptions.misusing.NotAMockException; message: ?Argument passed to verify() is of type Class and is not a mock!?Make sure you place the parenthesis correctly!?See the examples of correct verifications:? verify(mock).someMethod();? verify(mock, times(10)).someMethod();? verify(mock, atLeastOnce()).someMethod();");3717 } catch (org.mockito.exceptions.misusing.NotAMockException e) {3718 // Expected exception.3719 }3720 org.junit.Assert.assertNotNull(verificationMode0);3721 org.junit.Assert.assertNotNull(wildcardClass1);3722 org.junit.Assert.assertNotNull(verificationMode2);3723 }3724 @Test3725 public void test333() throws Throwable {3726 if (debug)3727 System.out.format("%n%s%n", "TestGroup100Case0.test333");3728 org.mockito.session.MockitoSessionBuilder[] mockitoSessionBuilderArray0 = org.mockito.ArgumentMatchers.any();3729 org.junit.Assert.assertNull(mockitoSessionBuilderArray0);3730 }3731 @Test3732 public void test334() throws Throwable {3733 if (debug)3734 System.out.format("%n%s%n", "TestGroup100Case0.test334");3735 org.mockito.verification.VerificationWithTimeout verificationWithTimeout1 = org.mockito.Mockito.timeout((long) (short) 0);3736 org.mockito.verification.VerificationMode verificationMode3 = org.mockito.Mockito.atLeast((int) (short) 1);3737 // The following exception was thrown during execution in test generation3738 try {3739 org.mockito.verification.VerificationWithTimeout verificationWithTimeout4 = org.mockito.Mockito.verify(verificationWithTimeout1, verificationMode3);3740 org.junit.Assert.fail("Expected exception of type org.mockito.exceptions.misusing.NotAMockException; message: ?Argument passed to verify() is of type Timeout and is not a mock!?Make sure you place the parenthesis correctly!?See the examples of correct verifications:? verify(mock).someMethod();? verify(mock, times(10)).someMethod();? verify(mock, atLeastOnce()).someMethod();");3741 } catch (org.mockito.exceptions.misusing.NotAMockException e) {3742 // Expected exception.3743 }3744 org.junit.Assert.assertNotNull(verificationWithTimeout1);3745 org.junit.Assert.assertNotNull(verificationMode3);3746 }3747 @Test3748 public void test335() throws Throwable {3749 if (debug)3750 System.out.format("%n%s%n", "TestGroup100Case0.test335");3751 java.util.Set<java.lang.Comparable<java.lang.String>> strComparableSet0 = org.mockito.ArgumentMatchers.anySet();3752 java.lang.Object[] objArray1 = new java.lang.Object[] { strComparableSet0 };3753 java.lang.Iterable<org.mockito.Mockito> mockitoIterable2 = org.mockito.ArgumentMatchers.anyIterable();3754 org.mockito.MockSettings mockSettings3 = org.mockito.Mockito.withSettings();3755 java.lang.Class<?> wildcardClass4 = mockSettings3.getClass();3756 org.mockito.verification.VerificationWithTimeout verificationWithTimeout6 = org.mockito.Mockito.timeout((long) (short) 100);3757 java.lang.String[] strArray7 = new java.lang.String[] {};3758 org.mockito.verification.VerificationWithTimeout verificationWithTimeout8 = org.mockito.ArgumentMatchers.refEq(verificationWithTimeout6, strArray7);3759 java.lang.reflect.AnnotatedElement annotatedElement9 = org.mockito.ArgumentMatchers.refEq((java.lang.reflect.AnnotatedElement) wildcardClass4, strArray7);3760 java.lang.Iterable<org.mockito.Mockito> mockitoIterable10 = org.mockito.ArgumentMatchers.refEq(mockitoIterable2, strArray7);3761 java.lang.Object[] objArray11 = org.mockito.ArgumentMatchers.refEq(objArray1, strArray7);3762 // The following exception was thrown during execution in test generation3763 try {3764 org.mockito.Mockito.verifyNoInteractions(objArray1);3765 org.junit.Assert.fail("Expected exception of type org.mockito.exceptions.misusing.InvalidUseOfMatchersException; message: ?Misplaced or misused argument matcher detected here:??-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)?-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)?-> at sun.reflect.GeneratedMethodAccessor25.invoke(Unknown Source)?-> at sun.reflect.GeneratedMethodAccessor25.invoke(Unknown Source)?-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)?-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)?-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)?-> at sun.reflect.GeneratedMethodAccessor25.invoke(Unknown Source)?-> at sun.reflect.GeneratedMethodAccessor25.invoke(Unknown Source)?-> at sun.reflect.GeneratedMethodAccessor25.invoke(Unknown Source)?-> at sun.reflect.GeneratedMethodAccessor25.invoke(Unknown Source)??You cannot use argument matchers outside of verification or stubbing.?Examples of correct usage of argument matchers:? when(mock.get(anyInt())).thenReturn(null);? doThrow(new RuntimeException()).when(mock).someVoidMethod(anyObject());? verify(mock).someMethod(contains(\"foo\"))??This message may appear after an NullPointerException if the last matcher is returning an object ?like any() but the stubbed method signature expect a primitive argument, in this case,?use primitive alternatives.? when(mock.get(any())); // bad use, will raise NPE? when(mock.get(anyInt())); // correct usage use??Also, this error might show up because you use argument matchers with methods that cannot be mocked.?Following methods *cannot* be stubbed/verified: final/private/equals()/hashCode().?Mocking methods declared on non-public parent classes is not supported.?");3766 } catch (org.mockito.exceptions.misusing.InvalidUseOfMatchersException e) {3767 // Expected exception.3768 }3769 org.junit.Assert.assertNotNull(strComparableSet0);3770 org.junit.Assert.assertNotNull(objArray1);3771 org.junit.Assert.assertEquals(java.util.Arrays.deepToString(objArray1), "[[]]");3772 org.junit.Assert.assertEquals(java.util.Arrays.toString(objArray1), "[[]]");3773 org.junit.Assert.assertNotNull(mockitoIterable2);3774 org.junit.Assert.assertNotNull(mockSettings3);3775 org.junit.Assert.assertNotNull(wildcardClass4);3776 org.junit.Assert.assertNotNull(verificationWithTimeout6);3777 org.junit.Assert.assertNotNull(strArray7);3778 org.junit.Assert.assertNull(verificationWithTimeout8);3779 org.junit.Assert.assertNull(annotatedElement9);3780 org.junit.Assert.assertNull(mockitoIterable10);3781 org.junit.Assert.assertNull(objArray11);3782 }3783 @Test3784 public void test336() throws Throwable {3785 if (debug)3786 System.out.format("%n%s%n", "TestGroup100Case0.test336");3787 java.lang.reflect.Type type0 = org.mockito.ArgumentMatchers.anyObject();3788 org.junit.Assert.assertNull(type0);3789 }3790 @Test3791 public void test337() throws Throwable {3792 if (debug)3793 System.out.format("%n%s%n", "TestGroup100Case0.test337");3794 org.mockito.stubbing.Answer<java.lang.Object> objAnswer0 = org.mockito.Mockito.RETURNS_DEFAULTS;3795 org.mockito.stubbing.Answer<java.lang.Object> objAnswer1 = org.mockito.ArgumentMatchers.eq(objAnswer0);3796 // The following exception was thrown during execution in test generation3797 try {3798 org.mockito.stubbing.Stubber stubber2 = org.mockito.Mockito.doAnswer((org.mockito.stubbing.Answer) objAnswer1);3799 org.junit.Assert.fail("Expected exception of type org.mockito.exceptions.misusing.InvalidUseOfMatchersException; message: ?Misplaced or misused argument matcher detected here:??-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)?-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)??You cannot use argument matchers outside of verification or stubbing.?Examples of correct usage of argument matchers:? when(mock.get(anyInt())).thenReturn(null);? doThrow(new RuntimeException()).when(mock).someVoidMethod(anyObject());? verify(mock).someMethod(contains(\"foo\"))??This message may appear after an NullPointerException if the last matcher is returning an object ?like any() but the stubbed method signature expect a primitive argument, in this case,?use primitive alternatives.? when(mock.get(any())); // bad use, will raise NPE? when(mock.get(anyInt())); // correct usage use??Also, this error might show up because you use argument matchers with methods that cannot be mocked.?Following methods *cannot* be stubbed/verified: final/private/equals()/hashCode().?Mocking methods declared on non-public parent classes is not supported.?");3800 } catch (org.mockito.exceptions.misusing.InvalidUseOfMatchersException e) {3801 // Expected exception.3802 }3803 org.junit.Assert.assertTrue("'" + objAnswer0 + "' != '" + org.mockito.Answers.RETURNS_DEFAULTS + "'", objAnswer0.equals(org.mockito.Answers.RETURNS_DEFAULTS));3804 org.junit.Assert.assertNull(objAnswer1);3805 }3806 @Test3807 public void test338() throws Throwable {3808 if (debug)3809 System.out.format("%n%s%n", "TestGroup100Case0.test338");3810 java.lang.reflect.Type type0 = null;3811 // The following exception was thrown during execution in test generation3812 try {3813 java.lang.reflect.Type type1 = org.mockito.Mockito.verify(type0);3814 org.junit.Assert.fail("Expected exception of type org.mockito.exceptions.misusing.NullInsteadOfMockException; message: ?Argument passed to verify() should be a mock but is null!?Examples of correct verifications:? verify(mock).someMethod();? verify(mock, times(10)).someMethod();? verify(mock, atLeastOnce()).someMethod();? not: verify(mock.someMethod());?Also, if you use @Mock annotation don't miss openMocks()");3815 } catch (org.mockito.exceptions.misusing.NullInsteadOfMockException e) {3816 // Expected exception.3817 }3818 }3819 @Test3820 public void test339() throws Throwable {3821 if (debug)3822 System.out.format("%n%s%n", "TestGroup100Case0.test339");3823 java.lang.Iterable<org.mockito.Mockito> mockitoIterable0 = org.mockito.ArgumentMatchers.anyIterable();3824 org.mockito.MockSettings mockSettings1 = org.mockito.Mockito.withSettings();3825 java.lang.Class<?> wildcardClass2 = mockSettings1.getClass();3826 org.mockito.verification.VerificationWithTimeout verificationWithTimeout4 = org.mockito.Mockito.timeout((long) (short) 100);3827 java.lang.String[] strArray5 = new java.lang.String[] {};3828 org.mockito.verification.VerificationWithTimeout verificationWithTimeout6 = org.mockito.ArgumentMatchers.refEq(verificationWithTimeout4, strArray5);3829 java.lang.reflect.AnnotatedElement annotatedElement7 = org.mockito.ArgumentMatchers.refEq((java.lang.reflect.AnnotatedElement) wildcardClass2, strArray5);3830 java.lang.Iterable<org.mockito.Mockito> mockitoIterable8 = org.mockito.ArgumentMatchers.refEq(mockitoIterable0, strArray5);3831 // The following exception was thrown during execution in test generation3832 try {3833 org.mockito.Mockito.verifyNoMoreInteractions((java.lang.Object[]) strArray5);3834 org.junit.Assert.fail("Expected exception of type org.mockito.exceptions.base.MockitoException; message: ?Method requires argument(s)!?Pass mocks that should be verified, e.g:? verifyNoMoreInteractions(mockOne, mockTwo);? verifyNoInteractions(mockOne, mockTwo);?");3835 } catch (org.mockito.exceptions.base.MockitoException e) {3836 // Expected exception.3837 }3838 org.junit.Assert.assertNotNull(mockitoIterable0);3839 org.junit.Assert.assertNotNull(mockSettings1);3840 org.junit.Assert.assertNotNull(wildcardClass2);3841 org.junit.Assert.assertNotNull(verificationWithTimeout4);3842 org.junit.Assert.assertNotNull(strArray5);3843 org.junit.Assert.assertNull(verificationWithTimeout6);3844 org.junit.Assert.assertNull(annotatedElement7);3845 org.junit.Assert.assertNull(mockitoIterable8);3846 }3847 @Test3848 public void test340() throws Throwable {3849 if (debug)3850 System.out.format("%n%s%n", "TestGroup100Case0.test340");3851 org.mockito.ArgumentMatchers argumentMatchers0 = org.mockito.ArgumentMatchers.anyVararg();3852 org.junit.Assert.assertNull(argumentMatchers0);3853 }3854 @Test3855 public void test341() throws Throwable {3856 if (debug)3857 System.out.format("%n%s%n", "TestGroup100Case0.test341");3858 org.apache.dubbo.common.threadlocal.InternalThread internalThread1 = new org.apache.dubbo.common.threadlocal.InternalThread("value");3859 }3860 @Test3861 public void test342() throws Throwable {3862 if (debug)3863 System.out.format("%n%s%n", "TestGroup100Case0.test342");3864 org.apache.dubbo.common.threadlocal.InternalThread internalThread1 = new org.apache.dubbo.common.threadlocal.InternalThread("attach");3865 org.apache.dubbo.common.threadlocal.InternalThread internalThread2 = new org.apache.dubbo.common.threadlocal.InternalThread((java.lang.Runnable) internalThread1);3866 org.apache.dubbo.common.threadlocal.InternalThread internalThread4 = new org.apache.dubbo.common.threadlocal.InternalThread((java.lang.Runnable) internalThread1, "Succeeded to forking invoke provider !");3867 org.apache.dubbo.common.threadlocal.InternalThread internalThread5 = new org.apache.dubbo.common.threadlocal.InternalThread((java.lang.Runnable) internalThread1);3868 }3869 @Test3870 public void test343() throws Throwable {3871 if (debug)3872 System.out.format("%n%s%n", "TestGroup100Case0.test343");3873 org.mockito.verification.VerificationMode verificationMode1 = org.mockito.Mockito.calls(5);3874 org.junit.Assert.assertNotNull(verificationMode1);3875 }3876 @Test3877 public void test344() throws Throwable {3878 if (debug)3879 System.out.format("%n%s%n", "TestGroup100Case0.test344");3880 java.util.Set<java.lang.Comparable<java.lang.String>> strComparableSet0 = org.mockito.ArgumentMatchers.anySet();3881 java.lang.Object[] objArray1 = new java.lang.Object[] { strComparableSet0 };3882 java.lang.Iterable<org.mockito.Mockito> mockitoIterable2 = org.mockito.ArgumentMatchers.anyIterable();3883 org.mockito.MockSettings mockSettings3 = org.mockito.Mockito.withSettings();3884 java.lang.Class<?> wildcardClass4 = mockSettings3.getClass();3885 org.mockito.verification.VerificationWithTimeout verificationWithTimeout6 = org.mockito.Mockito.timeout((long) (short) 100);3886 java.lang.String[] strArray7 = new java.lang.String[] {};3887 org.mockito.verification.VerificationWithTimeout verificationWithTimeout8 = org.mockito.ArgumentMatchers.refEq(verificationWithTimeout6, strArray7);3888 java.lang.reflect.AnnotatedElement annotatedElement9 = org.mockito.ArgumentMatchers.refEq((java.lang.reflect.AnnotatedElement) wildcardClass4, strArray7);3889 java.lang.Iterable<org.mockito.Mockito> mockitoIterable10 = org.mockito.ArgumentMatchers.refEq(mockitoIterable2, strArray7);3890 java.lang.Object[] objArray11 = org.mockito.ArgumentMatchers.refEq(objArray1, strArray7);3891 // The following exception was thrown during execution in test generation3892 try {3893 org.mockito.Mockito.verifyZeroInteractions(objArray1);3894 org.junit.Assert.fail("Expected exception of type org.mockito.exceptions.misusing.InvalidUseOfMatchersException; message: ?Misplaced or misused argument matcher detected here:??-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)?-> at sun.reflect.GeneratedMethodAccessor25.invoke(Unknown Source)?-> at sun.reflect.GeneratedMethodAccessor25.invoke(Unknown Source)?-> at sun.reflect.GeneratedMethodAccessor25.invoke(Unknown Source)?-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)?-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)?-> at sun.reflect.GeneratedMethodAccessor35.invoke(Unknown Source)?-> at sun.reflect.GeneratedMethodAccessor25.invoke(Unknown Source)?-> at sun.reflect.GeneratedMethodAccessor25.invoke(Unknown Source)?-> at sun.reflect.GeneratedMethodAccessor25.invoke(Unknown Source)?-> at sun.reflect.GeneratedMethodAccessor25.invoke(Unknown Source)??You cannot use argument matchers outside of verification or stubbing.?Examples of correct usage of argument matchers:? when(mock.get(anyInt())).thenReturn(null);? doThrow(new RuntimeException()).when(mock).someVoidMethod(anyObject());? verify(mock).someMethod(contains(\"foo\"))??This message may appear after an NullPointerException if the last matcher is returning an object ?like any() but the stubbed method signature expect a primitive argument, in this case,?use primitive alternatives.? when(mock.get(any())); // bad use, will raise NPE? when(mock.get(anyInt())); // correct usage use??Also, this error might show up because you use argument matchers with methods that cannot be mocked.?Following methods *cannot* be stubbed/verified: final/private/equals()/hashCode().?Mocking methods declared on non-public parent classes is not supported.?");3895 } catch (org.mockito.exceptions.misusing.InvalidUseOfMatchersException e) {3896 // Expected exception.3897 }3898 org.junit.Assert.assertNotNull(strComparableSet0);3899 org.junit.Assert.assertNotNull(objArray1);3900 org.junit.Assert.assertEquals(java.util.Arrays.deepToString(objArray1), "[[]]");3901 org.junit.Assert.assertEquals(java.util.Arrays.toString(objArray1), "[[]]");3902 org.junit.Assert.assertNotNull(mockitoIterable2);3903 org.junit.Assert.assertNotNull(mockSettings3);3904 org.junit.Assert.assertNotNull(wildcardClass4);3905 org.junit.Assert.assertNotNull(verificationWithTimeout6);3906 org.junit.Assert.assertNotNull(strArray7);3907 org.junit.Assert.assertNull(verificationWithTimeout8);3908 org.junit.Assert.assertNull(annotatedElement9);3909 org.junit.Assert.assertNull(mockitoIterable10);3910 org.junit.Assert.assertNull(objArray11);3911 }3912 @Test3913 public void test345() throws Throwable {3914 if (debug)3915 System.out.format("%n%s%n", "TestGroup100Case0.test345");3916 org.mockito.stubbing.Answer<java.lang.Object> objAnswer0 = org.mockito.Mockito.RETURNS_DEEP_STUBS;3917 org.mockito.stubbing.Stubber stubber1 = null; // flaky: org.mockito.Mockito.doReturn((java.lang.Object) objAnswer0);3918 org.junit.Assert.assertTrue("'" + objAnswer0 + "' != '" + org.mockito.Answers.RETURNS_DEEP_STUBS + "'", objAnswer0.equals(org.mockito.Answers.RETURNS_DEEP_STUBS));3919// flaky: org.junit.Assert.assertNotNull(stubber1);3920 }3921 @Test3922 public void test346() throws Throwable {3923 if (debug)3924 System.out.format("%n%s%n", "TestGroup100Case0.test346");3925 org.mockito.verification.VerificationMode verificationMode1 = org.mockito.Mockito.times(0);3926 org.junit.Assert.assertNotNull(verificationMode1);3927 }3928 @Test3929 public void test347() throws Throwable {3930 if (debug)3931 System.out.format("%n%s%n", "TestGroup100Case0.test347");3932 org.apache.dubbo.common.threadlocal.InternalThread internalThread0 = new org.apache.dubbo.common.threadlocal.InternalThread();3933 org.apache.dubbo.common.threadlocal.InternalThread internalThread1 = new org.apache.dubbo.common.threadlocal.InternalThread((java.lang.Runnable) internalThread0);3934 org.apache.dubbo.common.threadlocal.InternalThread internalThread2 = new org.apache.dubbo.common.threadlocal.InternalThread((java.lang.Runnable) internalThread1);3935 org.apache.dubbo.common.threadlocal.InternalThread internalThread3 = new org.apache.dubbo.common.threadlocal.InternalThread((java.lang.Runnable) internalThread1);3936 }3937 @Test3938 public void test348() throws Throwable {3939 if (debug)3940 System.out.format("%n%s%n", "TestGroup100Case0.test348");3941 org.mockito.ArgumentMatchers argumentMatchers0 = org.mockito.ArgumentMatchers.isNull();3942 org.junit.Assert.assertNull(argumentMatchers0);3943 }3944 @Test3945 public void test349() throws Throwable {3946 if (debug)3947 System.out.format("%n%s%n", "TestGroup100Case0.test349");3948 org.mockito.stubbing.Answer<java.lang.Object> objAnswer0 = org.mockito.ArgumentMatchers.anyVararg();3949 org.junit.Assert.assertNull(objAnswer0);3950 }3951 @Test3952 public void test350() throws Throwable {3953 if (debug)3954 System.out.format("%n%s%n", "TestGroup100Case0.test350");3955 int int1 = org.mockito.ArgumentMatchers.eq((-1));3956 org.junit.Assert.assertTrue("'" + int1 + "' != '" + 0 + "'", int1 == 0);3957 }3958 @Test3959 public void test351() throws Throwable {3960 if (debug)3961 System.out.format("%n%s%n", "TestGroup100Case0.test351");3962 java.lang.String str1 = org.mockito.ArgumentMatchers.matches("Too many thread-local indexed variables");3963 org.junit.Assert.assertEquals("'" + str1 + "' != '" + "" + "'", str1, "");3964 }3965 @Test3966 public void test352() throws Throwable {3967 if (debug)3968 System.out.format("%n%s%n", "TestGroup100Case0.test352");3969 java.lang.ThreadGroup threadGroup0 = null;3970 org.apache.dubbo.common.threadlocal.InternalThread internalThread2 = new org.apache.dubbo.common.threadlocal.InternalThread("attach");3971 org.apache.dubbo.common.threadlocal.InternalThread internalThread5 = new org.apache.dubbo.common.threadlocal.InternalThread(threadGroup0, (java.lang.Runnable) internalThread2, "attach", (long) '4');3972 }3973 @Test3974 public void test353() throws Throwable {3975 if (debug)3976 System.out.format("%n%s%n", "TestGroup100Case0.test353");3977 org.mockito.verification.VerificationMode verificationMode1 = org.mockito.Mockito.atMost(1);3978 org.junit.Assert.assertNotNull(verificationMode1);3979 }3980 @Test3981 public void test354() throws Throwable {3982 if (debug)3983 System.out.format("%n%s%n", "TestGroup100Case0.test354");3984 java.util.Set<org.mockito.Mockito> mockitoSet0 = org.mockito.ArgumentMatchers.anySet();3985 java.lang.Iterable<org.mockito.Mockito> mockitoIterable1 = org.mockito.ArgumentMatchers.anyIterable();3986 org.mockito.MockSettings mockSettings2 = org.mockito.Mockito.withSettings();3987 java.lang.Class<?> wildcardClass3 = mockSettings2.getClass();3988 org.mockito.verification.VerificationWithTimeout verificationWithTimeout5 = org.mockito.Mockito.timeout((long) (short) 100);3989 java.lang.String[] strArray6 = new java.lang.String[] {};3990 org.mockito.verification.VerificationWithTimeout verificationWithTimeout7 = org.mockito.ArgumentMatchers.refEq(verificationWithTimeout5, strArray6);3991 java.lang.reflect.AnnotatedElement annotatedElement8 = org.mockito.ArgumentMatchers.refEq((java.lang.reflect.AnnotatedElement) wildcardClass3, strArray6);3992 java.lang.Iterable<org.mockito.Mockito> mockitoIterable9 = org.mockito.ArgumentMatchers.refEq(mockitoIterable1, strArray6);3993 java.util.Set<org.mockito.Mockito> mockitoSet10 = org.mockito.ArgumentMatchers.anySet();3994 java.lang.Iterable[] iterableArray12 = new java.lang.Iterable[3];3995 @SuppressWarnings("unchecked")3996 java.lang.Iterable<org.mockito.Mockito>[] mockitoIterableArray13 = (java.lang.Iterable<org.mockito.Mockito>[]) iterableArray12;3997 mockitoIterableArray13[0] = mockitoSet0;3998 mockitoIterableArray13[1] = mockitoIterable1;3999 mockitoIterableArray13[2] = mockitoSet10;4000 // The following exception was thrown during execution in test generation4001 try {4002 org.mockito.Mockito.reset(mockitoIterableArray13);4003 org.junit.Assert.fail("Expected exception of type org.mockito.exceptions.misusing.InvalidUseOfMatchersException; message: ?Misplaced or misused argument matcher detected here:??-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)?-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)?-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)?-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)?-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)?-> at sun.reflect.GeneratedMethodAccessor35.invoke(Unknown Source)?-> at sun.reflect.GeneratedMethodAccessor25.invoke(Unknown Source)?-> at sun.reflect.GeneratedMethodAccessor25.invoke(Unknown Source)?-> at sun.reflect.GeneratedMethodAccessor25.invoke(Unknown Source)?-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)??You cannot use argument matchers outside of verification or stubbing.?Examples of correct usage of argument matchers:? when(mock.get(anyInt())).thenReturn(null);? doThrow(new RuntimeException()).when(mock).someVoidMethod(anyObject());? verify(mock).someMethod(contains(\"foo\"))??This message may appear after an NullPointerException if the last matcher is returning an object ?like any() but the stubbed method signature expect a primitive argument, in this case,?use primitive alternatives.? when(mock.get(any())); // bad use, will raise NPE? when(mock.get(anyInt())); // correct usage use??Also, this error might show up because you use argument matchers with methods that cannot be mocked.?Following methods *cannot* be stubbed/verified: final/private/equals()/hashCode().?Mocking methods declared on non-public parent classes is not supported.?");4004 } catch (org.mockito.exceptions.misusing.InvalidUseOfMatchersException e) {4005 // Expected exception.4006 }4007 org.junit.Assert.assertNotNull(mockitoSet0);4008 org.junit.Assert.assertNotNull(mockitoIterable1);4009 org.junit.Assert.assertNotNull(mockSettings2);4010 org.junit.Assert.assertNotNull(wildcardClass3);4011 org.junit.Assert.assertNotNull(verificationWithTimeout5);4012 org.junit.Assert.assertNotNull(strArray6);4013 org.junit.Assert.assertNull(verificationWithTimeout7);4014 org.junit.Assert.assertNull(annotatedElement8);4015 org.junit.Assert.assertNull(mockitoIterable9);4016 org.junit.Assert.assertNotNull(mockitoSet10);4017 org.junit.Assert.assertNotNull(iterableArray12);4018 org.junit.Assert.assertNotNull(mockitoIterableArray13);4019 }4020 @Test4021 public void test355() throws Throwable {4022 if (debug)4023 System.out.format("%n%s%n", "TestGroup100Case0.test355");4024 int int1 = org.mockito.ArgumentMatchers.eq((int) '4');4025 org.junit.Assert.assertTrue("'" + int1 + "' != '" + 0 + "'", int1 == 0);4026 }4027 @Test4028 public void test356() throws Throwable {4029 if (debug)4030 System.out.format("%n%s%n", "TestGroup100Case0.test356");4031 java.lang.ThreadGroup threadGroup0 = null;4032 org.apache.dubbo.common.threadlocal.InternalThread internalThread2 = new org.apache.dubbo.common.threadlocal.InternalThread(threadGroup0, "set attachment failed!");4033 org.apache.dubbo.common.threadlocal.InternalThreadLocalMap internalThreadLocalMap3 = internalThread2.threadLocalMap();4034 org.junit.Assert.assertNull(internalThreadLocalMap3);4035 }4036 @Test4037 public void test357() throws Throwable {4038 if (debug)4039 System.out.format("%n%s%n", "TestGroup100Case0.test357");4040 org.mockito.MockingDetails mockingDetails1 = org.mockito.Mockito.mockingDetails((java.lang.Object) 0);4041 java.util.Collection<java.lang.reflect.GenericDeclaration> genericDeclarationCollection2 = org.mockito.ArgumentMatchers.anyCollection();4042 org.mockito.MockingDetails mockingDetails3 = org.mockito.Mockito.mockingDetails((java.lang.Object) genericDeclarationCollection2);4043 org.mockito.MockingDetails mockingDetails5 = org.mockito.Mockito.mockingDetails((java.lang.Object) 0);4044 org.mockito.MockingDetails mockingDetails7 = org.mockito.Mockito.mockingDetails((java.lang.Object) 0);4045 org.mockito.MockingDetails mockingDetails9 = org.mockito.Mockito.mockingDetails((java.lang.Object) 100.0f);4046 org.mockito.MockingDetails[] mockingDetailsArray10 = new org.mockito.MockingDetails[] { mockingDetails1, mockingDetails3, mockingDetails5, mockingDetails7, mockingDetails9 };4047 // The following exception was thrown during execution in test generation4048 try {4049 org.mockito.Mockito.reset(mockingDetailsArray10);4050 org.junit.Assert.fail("Expected exception of type org.mockito.exceptions.misusing.InvalidUseOfMatchersException; message: ?Misplaced or misused argument matcher detected here:??-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)?-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)??You cannot use argument matchers outside of verification or stubbing.?Examples of correct usage of argument matchers:? when(mock.get(anyInt())).thenReturn(null);? doThrow(new RuntimeException()).when(mock).someVoidMethod(anyObject());? verify(mock).someMethod(contains(\"foo\"))??This message may appear after an NullPointerException if the last matcher is returning an object ?like any() but the stubbed method signature expect a primitive argument, in this case,?use primitive alternatives.? when(mock.get(any())); // bad use, will raise NPE? when(mock.get(anyInt())); // correct usage use??Also, this error might show up because you use argument matchers with methods that cannot be mocked.?Following methods *cannot* be stubbed/verified: final/private/equals()/hashCode().?Mocking methods declared on non-public parent classes is not supported.?");4051 } catch (org.mockito.exceptions.misusing.InvalidUseOfMatchersException e) {4052 // Expected exception.4053 }4054 org.junit.Assert.assertNotNull(mockingDetails1);4055 org.junit.Assert.assertNotNull(genericDeclarationCollection2);4056 org.junit.Assert.assertNotNull(mockingDetails3);4057 org.junit.Assert.assertNotNull(mockingDetails5);4058 org.junit.Assert.assertNotNull(mockingDetails7);4059 org.junit.Assert.assertNotNull(mockingDetails9);4060 org.junit.Assert.assertNotNull(mockingDetailsArray10);4061 }4062 @Test4063 public void test358() throws Throwable {4064 if (debug)4065 System.out.format("%n%s%n", "TestGroup100Case0.test358");4066 java.util.Map<java.util.Set<java.lang.Comparable<java.lang.String>>, org.mockito.MockSettings> strComparableSetMap0 = org.mockito.ArgumentMatchers.anyMap();4067 java.lang.String[] strArray2 = new java.lang.String[] {};4068 java.lang.String str3 = org.mockito.ArgumentMatchers.refEq("method1", strArray2);4069 java.util.Map<java.util.Set<java.lang.Comparable<java.lang.String>>, org.mockito.MockSettings> strComparableSetMap4 = org.mockito.ArgumentMatchers.refEq(strComparableSetMap0, strArray2);4070 org.junit.Assert.assertNotNull(strComparableSetMap0);4071 org.junit.Assert.assertNotNull(strArray2);4072 org.junit.Assert.assertNull(str3);4073 org.junit.Assert.assertNull(strComparableSetMap4);4074 }4075 @Test4076 public void test359() throws Throwable {4077 if (debug)4078 System.out.format("%n%s%n", "TestGroup100Case0.test359");4079 java.lang.ThreadGroup threadGroup0 = null;4080 java.lang.ThreadGroup threadGroup1 = null;4081 java.lang.ThreadGroup threadGroup2 = null;4082 java.lang.ThreadGroup threadGroup3 = null;4083 java.lang.ThreadGroup threadGroup4 = null;4084 org.apache.dubbo.common.threadlocal.InternalThread internalThread6 = new org.apache.dubbo.common.threadlocal.InternalThread(threadGroup4, "Succeeded to forking invoke provider !");4085 org.apache.dubbo.common.threadlocal.InternalThread internalThread9 = new org.apache.dubbo.common.threadlocal.InternalThread(threadGroup3, (java.lang.Runnable) internalThread6, "value", 1L);4086 org.apache.dubbo.common.threadlocal.InternalThread internalThread11 = new org.apache.dubbo.common.threadlocal.InternalThread(threadGroup2, (java.lang.Runnable) internalThread6, "method1");4087 org.apache.dubbo.common.threadlocal.InternalThread internalThread12 = new org.apache.dubbo.common.threadlocal.InternalThread(threadGroup1, (java.lang.Runnable) internalThread11);4088 org.apache.dubbo.common.threadlocal.InternalThread internalThread15 = new org.apache.dubbo.common.threadlocal.InternalThread(threadGroup0, (java.lang.Runnable) internalThread11, "set attachment failed!", (long) (short) 0);4089 java.lang.Class<?> wildcardClass16 = internalThread15.getClass();4090 org.mockito.verification.VerificationMode verificationMode18 = org.mockito.Mockito.atLeast((int) (short) 1);4091 // The following exception was thrown during execution in test generation4092 try {4093 java.lang.Class<?> wildcardClass19 = org.mockito.Mockito.verify(wildcardClass16, verificationMode18);4094 org.junit.Assert.fail("Expected exception of type org.mockito.exceptions.misusing.NotAMockException; message: ?Argument passed to verify() is of type Class and is not a mock!?Make sure you place the parenthesis correctly!?See the examples of correct verifications:? verify(mock).someMethod();? verify(mock, times(10)).someMethod();? verify(mock, atLeastOnce()).someMethod();");4095 } catch (org.mockito.exceptions.misusing.NotAMockException e) {4096 // Expected exception.4097 }4098 org.junit.Assert.assertNotNull(wildcardClass16);4099 org.junit.Assert.assertNotNull(verificationMode18);4100 }4101 @Test4102 public void test360() throws Throwable {4103 if (debug)4104 System.out.format("%n%s%n", "TestGroup100Case0.test360");4105 org.mockito.stubbing.Answer<java.lang.Object> objAnswer0 = org.mockito.Mockito.CALLS_REAL_METHODS;4106 // The following exception was thrown during execution in test generation4107 try {4108 org.mockito.stubbing.Stubber stubber1 = org.mockito.Mockito.doAnswer((org.mockito.stubbing.Answer) objAnswer0);4109 org.junit.Assert.fail("Expected exception of type org.mockito.exceptions.misusing.InvalidUseOfMatchersException; message: ?Misplaced or misused argument matcher detected here:??-> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)?-> at sun.reflect.GeneratedMethodAccessor25.invoke(Unknown Source)?-> at sun.reflect.GeneratedMethodAccessor25.invoke(Unknown Source)??You cannot use argument matchers outside of verification or stubbing.?Examples of correct usage of argument matchers:? when(mock.get(anyInt())).thenReturn(null);? doThrow(new RuntimeException()).when(mock).someVoidMethod(anyObject());? verify(mock).someMethod(contains(\"foo\"))??This message may appear after an NullPointerException if the last matcher is returning an object ?like any() but the stubbed method signature expect a primitive argument, in this case,?use primitive alternatives.? when(mock.get(any())); // bad use, will raise NPE? when(mock.get(anyInt())); // correct usage use??Also, this error might show up because you use argument matchers with methods that cannot be mocked.?Following methods *cannot* be stubbed/verified: final/private/equals()/hashCode().?Mocking methods declared on non-public parent classes is not supported.?");4110 } catch (org.mockito.exceptions.misusing.InvalidUseOfMatchersException e) {4111 // Expected exception.4112 }4113 org.junit.Assert.assertTrue("'" + objAnswer0 + "' != '" + org.mockito.Answers.CALLS_REAL_METHODS + "'", objAnswer0.equals(org.mockito.Answers.CALLS_REAL_METHODS));4114 }4115 @Test4116 public void test361() throws Throwable {4117 if (debug)4118 System.out.format("%n%s%n", "TestGroup100Case0.test361");4119 org.mockito.verification.VerificationMode verificationMode1 = org.mockito.Mockito.times((int) '4');4120 org.mockito.session.MockitoSessionBuilder mockitoSessionBuilder2 = org.mockito.Mockito.mockitoSession();4121 org.mockito.MockSettings mockSettings3 = org.mockito.Mockito.withSettings();4122 java.lang.Class<?> wildcardClass4 = mockSettings3.getClass();...

Full Screen

Full Screen

Source:DefaultLenientStubber.java Github

copy

Full Screen

...23 public Stubber doThrow(Class<? extends Throwable> toBeThrown, Class<? extends Throwable>... nextToBeThrown) {24 return stubber().doThrow(toBeThrown, nextToBeThrown);25 }26 @Override27 public Stubber doAnswer(Answer answer) {28 return stubber().doAnswer(answer);29 }30 @Override31 public Stubber doNothing() {32 return stubber().doNothing();33 }34 @Override35 public Stubber doReturn(Object toBeReturned) {36 return stubber().doReturn(toBeReturned);37 }38 @Override39 public Stubber doReturn(Object toBeReturned, Object... nextToBeReturned) {40 return stubber().doReturn(toBeReturned, nextToBeReturned);41 }42 @Override...

Full Screen

Full Screen

doAnswer

Using AI Code Generation

copy

Full Screen

1import static org.mockito.Mockito.doAnswer;2import static org.mockito.Mockito.mock;3import static org.mockito.Mockito.when;4import java.util.ArrayList;5import java.util.List;6import org.junit.Test;7import org.mockito.invocation.InvocationOnMock;8import org.mockito.stubbing.Answer;9public class TestMockito {10 public void testDoAnswer() {11 List<String> list = new ArrayList<String>();12 List<String> spy = mock(ArrayList.class);13 when(spy.size()).thenReturn(100);14 doAnswer(new Answer() {15 public Object answer(InvocationOnMock invocation) throws Throwable {16 Object[] args = invocation.getArguments();17 Object mock = invocation.getMock();18 System.out.println("called with arguments: " + args);19 return null;20 }21 }).when(spy).add("one");22 doAnswer(new Answer() {23 public Object answer(InvocationOnMock invocation) throws Throwable {24 Object[] args = invocation.getArguments();25 Object mock = invocation.getMock();26 System.out.println("called with arguments: " + args);27 return null;28 }29 }).when(spy).clear();30 spy.add("one");31 spy.add("two");32 spy.add("three");33 spy.clear();34 System.out.println("spy.size() = " + spy.size());35 }36}37spy.size() = 100

Full Screen

Full Screen

doAnswer

Using AI Code Generation

copy

Full Screen

1import org.mockito.internal.stubbing.DefaultLenientStubber;2import org.mockito.invocation.InvocationOnMock;3import org.mockito.stubbing.Answer;4import java.util.ArrayList;5import java.util.List;6import static org.mockito.Mockito.mock;7import static org.mockito.Mockito.when;8public class Test {9 public static void main(String[] args) {10 List list = mock(List.class);11 DefaultLenientStubber lenientStubber = new DefaultLenientStubber(list);12 lenientStubber.doAnswer(new Answer() {13 public Object answer(InvocationOnMock invocationOnMock) throws Throwable {14 return null;15 }16 }).when(list).get(0);17 lenientStubber.doAnswer(new Answer() {18 public Object answer(InvocationOnMock invocationOnMock) throws Throwable {19 return null;20 }21 }).when(list).get(1);22 lenientStubber.doAnswer(new Answer() {23 public Object answer(InvocationOnMock invocationOnMock) throws Throwable {24 return null;25 }26 }).when(list).get(2);27 lenientStubber.doAnswer(new Answer() {28 public Object answer(InvocationOnMock invocationOnMock) throws Throwable {29 return null;30 }31 }).when(list).get(3);32 lenientStubber.doAnswer(new Answer() {33 public Object answer(InvocationOnMock invocationOnMock) throws Throwable {34 return null;35 }36 }).when(list).get(4);37 lenientStubber.doAnswer(new Answer() {38 public Object answer(InvocationOnMock invocationOnMock) throws Throwable {39 return null;40 }41 }).when(list).get(5);42 lenientStubber.doAnswer(new Answer() {43 public Object answer(InvocationOnMock invocationOnMock) throws Throwable {44 return null;45 }46 }).when(list).get(6);47 lenientStubber.doAnswer(new Answer() {48 public Object answer(InvocationOnMock invocationOnMock) throws Throwable {49 return null;50 }51 }).when(list).get(7);52 lenientStubber.doAnswer(new Answer() {53 public Object answer(InvocationOnMock invocationOnMock) throws Throwable {54 return null;55 }56 }).when(list).get(

Full Screen

Full Screen

doAnswer

Using AI Code Generation

copy

Full Screen

1import org.mockito.invocation.InvocationOnMock;2import org.mockito.stubbing.Answer;3import static org.mockito.Mockito.doAnswer;4import static org.mockito.Mockito.mock;5public class MockitoDoAnswerExample {6 public static void main(String[] args) {7 MyClass test = mock(MyClass.class);8 doAnswer(new Answer() {9 public Object answer(InvocationOnMock invocation) {10 Object[] args = invocation.getArguments();11 Object mock = invocation.getMock();12 return "called with arguments: " + args;13 }14 }).when(test).getUniqueId();15 System.out.println(test.getUniqueId());16 }17}18class MyClass {19 public String getUniqueId() {20 return "mocked";21 }22}

Full Screen

Full Screen

doAnswer

Using AI Code Generation

copy

Full Screen

1package com.mockitotest;2import static org.mockito.Mockito.*;3import org.junit.Test;4import org.mockito.invocation.InvocationOnMock;5import org.mockito.stubbing.Answer;6public class Test1 {7 public void testAnswer() {8 Answer answer = new Answer() {9 public Object answer(InvocationOnMock invocation) throws Throwable {10 Object[] args = invocation.getArguments();11 Object mock = invocation.getMock();12 return "called with arguments: " + args;13 }14 };15 Comparable c = mock(Comparable.class);16 when(c.compareTo("Test")).thenAnswer(answer);17 System.out.println(c.compareTo("Test"));18 }19}20package com.mockitotest;21import static org.mockito.Mockito.*;22import org.junit.Test;23import org.mockito.invocation.InvocationOnMock;24import org.mockito.stubbing.Answer;25public class Test2 {26 public void testAnswer() {27 Comparable c = mock(Comparable.class);28 doAnswer(new Answer() {29 public Object answer(InvocationOnMock invocation) throws Throwable {30 Object[] args = invocation.getArguments();31 Object mock = invocation.getMock();32 return "called with arguments: " + args;33 }34 }).when(c).compareTo("Test");35 System.out.println(c.compareTo("Test"));36 }37}38package com.mockitotest;39import static org.mockito.Mockito.*;40import org.junit.Test;41import org.mockito.invocation.InvocationOnMock;42import org.mockito.stubbing.Answer;43public class Test3 {44 public void testAnswer() {45 Comparable c = mock(Comparable.class);46 doAnswer(new Answer() {47 public Object answer(InvocationOnMock invocation) throws Throwable {48 Object[] args = invocation.getArguments();49 Object mock = invocation.getMock();50 return "called with arguments: " + args;51 }52 }).when(c).compareTo(anyString());53 System.out.println(c.compareTo("Test"));54 }55}56package com.mockitotest;57import static org.mockito.Mockito.*;58import org.junit

Full Screen

Full Screen

doAnswer

Using AI Code Generation

copy

Full Screen

1import org.mockito.stubbing.*;2import org.mockito.invocation.*;3import org.mockito.stubbing.*;4import org.mockito.*;5import static org.mockito.Mockito.*;6import static org.mockito.Matchers.*;7import static org.mockito.Mockito.mock;8import static org.mockito.Mockito.when;9import static org.mockito.Mockito.doAnswer;10import static org.mockito.Mockito.doReturn;11import static org.mockito.Mockito.doThrow;12import static org.mockito.Mockito.doNothing;13public class 1 {14 public static void main(String[] args) {15 List list = mock(List.class);16 doAnswer(new Answer() {17 public Object answer(InvocationOnMock invocation) {18 Object[] args = invocation.getArguments();19 Object mock = invocation.getMock();20 return "called with arguments: " + args;21 }22 }).when(list).get(0);23 System.out.println(list.get(0));24 }25}26doReturn(value).when(mock).method(arguments);27import org.mockito.stubbing.*;28import org.mockito.invocation.*;29import org.mockito.stubbing.*;30import org.mockito.*;31import static org.mockito.Mockito.*;32import static org.mockito.Matchers.*;33import static org.mockito.Mockito.mock;34import static org.mockito.Mockito.when;35import static org.mockito.Mockito.doReturn;36import static org.mockito.Mockito.doThrow;37import static org.mockito.Mockito.doNothing;38public class 1 {39 public static void main(String[] args) {40 List list = mock(List.class);41 doReturn("foo").when(list).get(0);42 System.out.println(list.get(0));43 }44}45doThrow(exception).when(mock).method(arguments);46import org.mockito.stubbing.*;47import org.mockito.invocation.*;48import org.mockito.stubbing.*;49import org.mockito.*;50import static org.mockito.Mockito.*;51import static org.mockito.Matchers.*;52import static org.mockito.Mockito.mock;53import static org.mockito.Mockito.when;54import static org.mockito.Mockito.doThrow;55import static org

Full Screen

Full Screen

doAnswer

Using AI Code Generation

copy

Full Screen

1import org.mockito.internal.stubbing.DefaultLenientStubber;2import org.mockito.stubbing.Answer;3import org.mockito.stubbing.OngoingStubbing;4import org.mockito.stubbing.Stubber;5import org.mockito.stubbing.VoidAnswer2;6import org.mockito.stubbing.VoidAnswer3;7import org.mockito.stubbing.VoidAnswer4;8import org.mockito.stubbing.VoidAnswer5;9import org.mockito.stubbing.VoidAnswer6;10import org.mockito.stubbing.VoidAnswer7;11import org.mockito.stubbing.VoidAnswer8;12import org.mockito.stubbing.VoidAnswer9;13import java.util.List;14import static org.mockito.Mockito.doAnswer;15import static org.mockito.Mockito.doCallRealMethod;16import static org.mockito.Mockito.doNothing;17import static org.mockito.Mockito.doThrow;18public class 1 {19 private List mockList;20 public void test() {21 doAnswer(new Answer() {22 public Object answer(InvocationOnMock invocation) {23 Object[] args = invocation.getArguments();24 Object mock = invocation.getMock();25 return "called with arguments: " + args;26 }27 }).when(mockList).get(0);28 doThrow(new RuntimeException()).when(mockList).clear();29 doNothing().when(mockList).clear();30 doCallRealMethod().when(mockList).clear();31 }32}

Full Screen

Full Screen

doAnswer

Using AI Code Generation

copy

Full Screen

1interface MyInterface {2 String myMethod();3}4public class MyClass {5 public static void main(String[] args) {6 MyInterface myInterface = mock(MyInterface.class);7 doAnswer(invocation -> "Hello World").when(myInterface).myMethod();8 System.out.println(myInterface.myMethod());9 }10}11Recommended Posts: Mockito - when() method12Mockito - doAnswer() method13Mockito - doThrow() method14Mockito - doNothing() method15Mockito - doReturn() method16Mockito - doCallRealMethod() method17Mockito - doAnswer() method with arguments18Mockito - doAnswer() m

Full Screen

Full Screen

doAnswer

Using AI Code Generation

copy

Full Screen

1import org.mockito.invocation.InvocationOnMock;2import org.mockito.stubbing.Answer;3import org.mockito.Mockito;4import org.mockito.internal.stubbing.DefaultLenientStubber;5import org.mockito.stubbing.Stubber;6public class 1 {7 public static void main(String[] args) {8 A mock = Mockito.mock(A.class);9 new DefaultLenientStubber(mock).doAnswer(new Answer() {10 public Object answer(InvocationOnMock invocation) {11 return "Hello World!";12 }13 }).when(mock).method();14 System.out.println(mock.method());15 }16}17class A {18 String method() {19 return "Hello!";20 }21}

Full Screen

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run Mockito automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Most used method in DefaultLenientStubber

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful