File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed
src/test/java/org/springframework/data/neo4j/integration/imperative Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change 54
54
import org .junit .jupiter .api .BeforeEach ;
55
55
import org .junit .jupiter .api .Nested ;
56
56
import org .junit .jupiter .api .Test ;
57
+ import org .junit .jupiter .api .condition .EnabledIf ;
57
58
import org .junit .jupiter .api .extension .ExtendWith ;
58
59
import org .junit .jupiter .params .ParameterizedTest ;
59
60
import org .junit .jupiter .params .provider .Arguments ;
@@ -3921,7 +3922,12 @@ void findByIdWithInheritance(@Autowired BaseClassRepository baseClassRepository)
3921
3922
});
3922
3923
}
3923
3924
3925
+ boolean supportsCypher5LabelExpressions () {
3926
+ return neo4jConnectionSupport .isCypher5SyntaxCompatible ();
3927
+ }
3928
+
3924
3929
@ Test
3930
+ @ EnabledIf ("supportsCypher5LabelExpressions" )
3925
3931
void findByDynamicLabel (@ Autowired BaseClassRepository baseClassRepository ) {
3926
3932
3927
3933
Inheritance .ConcreteClassA ccA = new Inheritance .ConcreteClassA ("cc1" , "test" );
You can’t perform that action at this time.
0 commit comments