You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Note about objects:
Now they could be init twice, first time through constructor and second time through direct field assignment. Here is the sample for tests on Arrays.Point#equals from Arrays file
Point point = new Point(0, 1);
point.x = 0;
point.y = Integer.MIN_VALUE;
Point point1 = new Point(-1, Integer.MAX_VALUE);
point1.y = Integer.MIN_VALUE;
point1.x = 0;
Previously only constructor was used, without later re-asignemnt:
Point point = new Point(-1934310868, -1464141532);
Point point1 = new Point(-1934310868, -1934310868);
Initial set-up
Check that the IntelliJ Idea UTBot plugin can be successfully installed
IntelliJ IDEA 2022.2.3
JDK 11
Go through manual scenarios
Primitive type
Manual scenario #2
Manual scenario #3
The text was updated successfully, but these errors were encountered: