querydsl/querydsl-codegen/src/test/java/com/mysema/query/codegen/ExternalEmbeddableTest.java
2012-04-04 22:33:57 +03:00

21 lines
433 B
Java

package com.mysema.query.codegen;
import org.junit.Ignore;
import com.mysema.query.annotations.QueryEmbedded;
import com.mysema.query.annotations.QueryEntity;
import com.mysema.query.domain.EmbeddableWithoutQType;
@Ignore
public class ExternalEmbeddableTest {
@QueryEntity
public static class EntityWithExternalEmbeddable {
@QueryEmbedded
EmbeddableWithoutQType embeddable;
}
}