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 5454import org .junit .jupiter .api .BeforeEach ;
5555import org .junit .jupiter .api .Nested ;
5656import org .junit .jupiter .api .Test ;
57+ import org .junit .jupiter .api .condition .EnabledIf ;
5758import org .junit .jupiter .api .extension .ExtendWith ;
5859import org .junit .jupiter .params .ParameterizedTest ;
5960import org .junit .jupiter .params .provider .Arguments ;
@@ -3921,7 +3922,12 @@ void findByIdWithInheritance(@Autowired BaseClassRepository baseClassRepository)
39213922 });
39223923 }
39233924
3925+ boolean supportsCypher5LabelExpressions () {
3926+ return neo4jConnectionSupport .isCypher5SyntaxCompatible ();
3927+ }
3928+
39243929 @ Test
3930+ @ EnabledIf ("supportsCypher5LabelExpressions" )
39253931 void findByDynamicLabel (@ Autowired BaseClassRepository baseClassRepository ) {
39263932
39273933 Inheritance .ConcreteClassA ccA = new Inheritance .ConcreteClassA ("cc1" , "test" );
You can’t perform that action at this time.
0 commit comments