-
Notifications
You must be signed in to change notification settings - Fork 46
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
assertArrayEquals overload is not found, tests doesn't compile #135
Comments
The issue is that minor version of JUnit 4 have different API for arrays. |
resolving merge conflict with main branch, use the very last (just added to the list) library with matching name
resolving merge conflict with main branch, use the very last (just added to the list) library with matching name
SAT-1622
Project: guava-26.0. Class: com.google.common.primitives.Booleans.
Compilation Error during compiling Test Class after test generation:
C:\Users\sWX1143086\work\UnitTestBot\UTBotJava\utbot-junit-contest\build\output\test_candidates\guava-26.0\com\google\common\primitives\BooleansTest.java:605: error: no suitable method found for assertArrayEquals(boolean[],boolean[])
assertArrayEquals(expected, actual);
^
method Assert.assertArrayEquals(long[],long[]) is not applicable
(argument mismatch; boolean[] cannot be converted to long[])
method Assert.assertArrayEquals(int[],int[]) is not applicable
(argument mismatch; boolean[] cannot be converted to int[])
method Assert.assertArrayEquals(short[],short[]) is not applicable
(argument mismatch; boolean[] cannot be converted to short[])
method Assert.assertArrayEquals(char[],char[]) is not applicable
(argument mismatch; boolean[] cannot be converted to char[])
method Assert.assertArrayEquals(byte[],byte[]) is not applicable
(argument mismatch; boolean[] cannot be converted to byte[])
method Assert.assertArrayEquals(Object[],Object[]) is not applicable
(argument mismatch; boolean[] cannot be converted to Object[])
The text was updated successfully, but these errors were encountered: