use of org.neo4j.tooling.procedure.testutils.TypeMirrorTestUtils in project neo4j by neo4j.
the class RecordFieldTypeVisitorTest method prepare.
@Before
public void prepare() {
Elements elements = compilationRule.getElements();
types = compilationRule.getTypes();
typeMirrorUtils = new TypeMirrorUtils(types, elements);
typeMirrorTestUtils = new TypeMirrorTestUtils(compilationRule);
}
use of org.neo4j.tooling.procedure.testutils.TypeMirrorTestUtils in project neo4j by neo4j.
the class ParameterTypeVisitorTest method prepare.
@Before
public void prepare() {
Elements elements = compilationRule.getElements();
types = compilationRule.getTypes();
typeMirrorUtils = new TypeMirrorUtils(types, elements);
typeMirrorTestUtils = new TypeMirrorTestUtils(compilationRule);
}
use of org.neo4j.tooling.procedure.testutils.TypeMirrorTestUtils in project neo4j by neo4j.
the class RecordTypeVisitorTest method prepare.
@Before
public void prepare() {
Types types = compilation.getTypes();
Elements elements = compilation.getElements();
TypeMirrorUtils typeMirrors = new TypeMirrorUtils(types, elements);
typeMirrorTestUtils = new TypeMirrorTestUtils(compilation);
visitor = new RecordTypeVisitor(types, typeMirrors);
}
use of org.neo4j.tooling.procedure.testutils.TypeMirrorTestUtils in project neo4j by neo4j.
the class AllowedTypesValidatorTest method prepare.
@Before
public void prepare() {
Types types = compilation.getTypes();
Elements elements = compilation.getElements();
TypeMirrorUtils typeMirrors = new TypeMirrorUtils(types, elements);
typeMirrorTestUtils = new TypeMirrorTestUtils(compilation);
validator = new AllowedTypesValidator(typeMirrors, types);
}
Aggregations