mirror of
https://github.com/querydsl/querydsl.git
synced 2026-06-30 21:08:30 +08:00
#783546 : added test
This commit is contained in:
parent
1e439abc49
commit
4e5df42ccd
@ -0,0 +1,19 @@
|
||||
package com.mysema.query.domain;
|
||||
|
||||
import org.junit.Ignore;
|
||||
|
||||
import com.mysema.query.annotations.QueryEmbedded;
|
||||
import com.mysema.query.annotations.QueryEntity;
|
||||
|
||||
@Ignore
|
||||
public class ExternalEmbeddableTest {
|
||||
|
||||
@QueryEntity
|
||||
public class EntityWithExternalEmbeddable {
|
||||
|
||||
@QueryEmbedded
|
||||
EmbeddableWithoutQType embeddable;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
@ -0,0 +1,5 @@
|
||||
package com.mysema.query.domain;
|
||||
|
||||
public class EmbeddableWithoutQType {
|
||||
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user