mirror of
https://github.com/querydsl/querydsl.git
synced 2026-06-24 21:07:26 +08:00
moved test classes to inheritance and extensions packages
This commit is contained in:
parent
142ac85d13
commit
4bf76058d8
@ -3,7 +3,7 @@
|
||||
* All rights reserved.
|
||||
*
|
||||
*/
|
||||
package com.mysema.query.domain;
|
||||
package com.mysema.query.extensions;
|
||||
|
||||
import static org.junit.Assert.assertEquals;
|
||||
|
||||
@ -3,7 +3,7 @@
|
||||
* All rights reserved.
|
||||
*
|
||||
*/
|
||||
package com.mysema.query.domain;
|
||||
package com.mysema.query.extensions;
|
||||
|
||||
import static org.junit.Assert.assertEquals;
|
||||
|
||||
@ -3,7 +3,7 @@
|
||||
* All rights reserved.
|
||||
*
|
||||
*/
|
||||
package com.mysema.query.domain;
|
||||
package com.mysema.query.extensions;
|
||||
|
||||
import static org.junit.Assert.assertEquals;
|
||||
|
||||
@ -3,7 +3,7 @@
|
||||
* All rights reserved.
|
||||
*
|
||||
*/
|
||||
package com.mysema.query.domain;
|
||||
package com.mysema.query.extensions;
|
||||
|
||||
import static org.junit.Assert.assertNotNull;
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
package com.mysema.query.domain;
|
||||
package com.mysema.query.extensions;
|
||||
|
||||
import static org.junit.Assert.*;
|
||||
import static org.junit.Assert.assertEquals;
|
||||
|
||||
import org.junit.Test;
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
package com.mysema.query.domain;
|
||||
package com.mysema.query.extensions;
|
||||
|
||||
import static org.junit.Assert.assertNotNull;
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
package com.mysema.query.domain;
|
||||
package com.mysema.query.extensions;
|
||||
|
||||
import static org.junit.Assert.assertEquals;
|
||||
import static org.junit.Assert.assertNotNull;
|
||||
@ -1,4 +1,4 @@
|
||||
package com.mysema.query.domain;
|
||||
package com.mysema.query.extensions;
|
||||
|
||||
import static org.junit.Assert.assertEquals;
|
||||
|
||||
@ -3,7 +3,7 @@
|
||||
* All rights reserved.
|
||||
*
|
||||
*/
|
||||
package com.mysema.query.domain;
|
||||
package com.mysema.query.extensions;
|
||||
|
||||
import static org.junit.Assert.assertEquals;
|
||||
import static org.junit.Assert.assertNotNull;
|
||||
@ -1,4 +1,4 @@
|
||||
package com.mysema.query.domain;
|
||||
package com.mysema.query.inheritance;
|
||||
|
||||
import static org.junit.Assert.assertEquals;
|
||||
|
||||
@ -3,7 +3,7 @@
|
||||
* All rights reserved.
|
||||
*
|
||||
*/
|
||||
package com.mysema.query.domain;
|
||||
package com.mysema.query.inheritance;
|
||||
|
||||
import org.junit.Test;
|
||||
|
||||
@ -3,7 +3,7 @@
|
||||
* All rights reserved.
|
||||
*
|
||||
*/
|
||||
package com.mysema.query.domain;
|
||||
package com.mysema.query.inheritance;
|
||||
|
||||
import java.util.Collection;
|
||||
import java.util.List;
|
||||
@ -13,6 +13,7 @@ import java.util.Set;
|
||||
import org.junit.Test;
|
||||
|
||||
import com.mysema.query.annotations.QueryEntity;
|
||||
import com.mysema.query.domain.AbstractTest;
|
||||
import com.mysema.query.types.path.PSimple;
|
||||
import com.mysema.query.types.path.PString;
|
||||
|
||||
@ -3,11 +3,12 @@
|
||||
* All rights reserved.
|
||||
*
|
||||
*/
|
||||
package com.mysema.query.domain;
|
||||
package com.mysema.query.inheritance;
|
||||
|
||||
import org.junit.Test;
|
||||
|
||||
import com.mysema.query.annotations.QueryEntity;
|
||||
import com.mysema.query.domain.AbstractTest;
|
||||
import com.mysema.query.types.path.PNumber;
|
||||
import com.mysema.query.types.path.PSimple;
|
||||
import com.mysema.query.types.path.PString;
|
||||
@ -1,4 +1,4 @@
|
||||
package com.mysema.query.domain;
|
||||
package com.mysema.query.inheritance;
|
||||
|
||||
import static org.junit.Assert.assertEquals;
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
package com.mysema.query.domain;
|
||||
package com.mysema.query.inheritance;
|
||||
|
||||
import static org.junit.Assert.assertEquals;
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
package com.mysema.query.domain;
|
||||
package com.mysema.query.inheritance;
|
||||
|
||||
import static org.junit.Assert.assertEquals;
|
||||
|
||||
@ -1,10 +1,12 @@
|
||||
package com.mysema.query.domain;
|
||||
package com.mysema.query.inheritance;
|
||||
|
||||
import static org.junit.Assert.assertEquals;
|
||||
|
||||
import org.junit.Test;
|
||||
|
||||
import com.mysema.query.annotations.QueryEntity;
|
||||
import com.mysema.query.domain.CommonIdentifiable;
|
||||
import com.mysema.query.domain.CommonPersistence;
|
||||
import com.mysema.query.types.path.PNumber;
|
||||
|
||||
public class Inheritance8Test {
|
||||
@ -1,10 +1,11 @@
|
||||
package com.mysema.query.domain;
|
||||
package com.mysema.query.inheritance;
|
||||
|
||||
import static org.junit.Assert.assertNotNull;
|
||||
|
||||
import org.junit.Test;
|
||||
|
||||
import com.mysema.query.annotations.QueryEntity;
|
||||
import com.mysema.query.domain.SuperSupertype;
|
||||
|
||||
/**
|
||||
* related to https://bugs.launchpad.net/querydsl/+bug/538148
|
||||
@ -3,7 +3,7 @@
|
||||
* All rights reserved.
|
||||
*
|
||||
*/
|
||||
package com.mysema.query.domain;
|
||||
package com.mysema.query.inheritance;
|
||||
|
||||
import static org.junit.Assert.assertNotNull;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user