Home | History | Annotate | Download | only in writer

Lines Matching defs:compilation

34   @Rule public final CompilationRule compilation = new CompilationRule();
37 return compilation.getElements().getTypeElement(clazz.getCanonicalName());
57 compilation.getTypes().getDeclaredType(getElement(Set.class), getType(Object.class));
71 assertThat(TypeNames.forTypeMirror(compilation.getTypes().getPrimitiveType(TypeKind.BOOLEAN)))
73 assertThat(TypeNames.forTypeMirror(compilation.getTypes().getPrimitiveType(TypeKind.BYTE)))
75 assertThat(TypeNames.forTypeMirror(compilation.getTypes().getPrimitiveType(TypeKind.SHORT)))
77 assertThat(TypeNames.forTypeMirror(compilation.getTypes().getPrimitiveType(TypeKind.INT)))
79 assertThat(TypeNames.forTypeMirror(compilation.getTypes().getPrimitiveType(TypeKind.LONG)))
81 assertThat(TypeNames.forTypeMirror(compilation.getTypes().getPrimitiveType(TypeKind.CHAR)))
83 assertThat(TypeNames.forTypeMirror(compilation.getTypes().getPrimitiveType(TypeKind.FLOAT)))
85 assertThat(TypeNames.forTypeMirror(compilation.getTypes().getPrimitiveType(TypeKind.DOUBLE)))
91 assertThat(TypeNames.forTypeMirror(compilation.getTypes().getArrayType(getType(Object.class))))
97 assertThat(TypeNames.forTypeMirror(compilation.getTypes().getNoType(TypeKind.VOID)))
103 assertThat(TypeNames.forTypeMirror(compilation.getTypes().getNullType()))