Skip to content

Commit de0e67c

Browse files
committed
CO_1.1.0, test apache#5 and apache#6 almost completed
1 parent 28f3566 commit de0e67c

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

openjpa-lib/src/test/java/org/apache/openjpa/lib/util/ConfigurationsITConfigurer.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
import org.apache.openjpa.lib.util.ConfigurationsIT.A3_OBJ_DEPTH;
66
import org.apache.openjpa.lib.util.ConfigurationsIT.TestState;
77
import org.apache.openjpa.lib.util.ConfigurationsITClasses.Deepest1;
8+
import org.apache.openjpa.lib.util.ConfigurationsITClasses.Deepest12;
89
import org.apache.openjpa.lib.util.ConfigurationsITClasses.Deepest123;
910
import org.apache.openjpa.lib.util.ConfigurationsITClasses.Intermediate12;
1011

@@ -51,6 +52,10 @@ public void configure() {
5152
testState.a3 == A3_OBJ_DEPTH.GREATER_THAN_ZERO) {
5253
testState.obj = new Intermediate12();
5354
return;
55+
} else if (testState.a2 == A2_NUMBER_OF_SETTABLE_PROPERTIES.EQUAL_AS_PROPERTIES_SIZE_MINUS_1 &&
56+
testState.a3 == A3_OBJ_DEPTH.ZERO) {
57+
testState.obj = new Deepest12();
58+
return;
5459
}
5560

5661
throw new IllegalStateException(String.format(

0 commit comments

Comments
 (0)