Skip to content

Commit 9b5d7bb

Browse files
EgorkaKulikovAbdullinAM
authored andcommitted
Modificators processing in AssembleModelGenerator and UtBotFieldModificatorsSearcher corrected (UnitTestBot#1029)
* Improve modificators analysis in UtBotFieldModificatorsSearcher and AssembleModelGenerator * Apply review comments * Fixed test * One more correction for package names
1 parent 1cede17 commit 9b5d7bb

35 files changed

+104
-107
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package org.utbot.examples.assemble.arrays;
1+
package org.utbot.examples.assemble;
22

33
/**
44
* A class with array of objects that are arrays of complex fields themselves.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package org.utbot.examples.assemble.arrays;
1+
package org.utbot.examples.assemble;
22

33
/**
44
* A class with a two-dimensional array field.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package org.utbot.examples.assemble.arrays;
1+
package org.utbot.examples.assemble;
22

33
/**
44
* A class with an array with a default value.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package org.utbot.examples.assemble.arrays;
1+
package org.utbot.examples.assemble;
22

33
import org.utbot.examples.assemble.PrimitiveFields;
44

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package org.utbot.examples.assemble.constructors;
1+
package org.utbot.examples.assemble;
22

33
/**
44
* A class without default constructor and with complex one.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package org.utbot.examples.assemble.constructors;
1+
package org.utbot.examples.assemble;
22

33
/**
44
* A class without default constructor and with complex one,
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package org.utbot.examples.assemble.constructors;
1+
package org.utbot.examples.assemble;
22

33
public class ConstructorModifyingStatic {
44

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package org.utbot.examples.assemble.defaults;
1+
package org.utbot.examples.assemble;
22

33
/**
44
* A class with a field with default value that is not a default value of type.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
package org.utbot.examples.assemble.defaults;
1+
package org.utbot.examples.assemble;
22

33
public class DefaultFieldModifiedInConstructor {
4-
int z;
4+
public int z;
55

66
@SuppressWarnings("Unused")
77
DefaultFieldModifiedInConstructor(int z_) {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package org.utbot.examples.assemble.defaults;
1+
package org.utbot.examples.assemble;
22

33
/**
44
* A class with a field with default value that is not a default value of type.

0 commit comments

Comments
 (0)