Skip to content

Commit

Permalink
Rename test classes in spring-data module
Browse files Browse the repository at this point in the history
(cherry picked from commit 1f12f30)
  • Loading branch information
jsmrcka authored and pablo gonzalez granados committed Jun 10, 2022
1 parent 6ce6bf1 commit 8332e8c
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
import io.quarkus.test.scenarios.OpenShiftScenario;

@OpenShiftScenario
public class OpenShiftCatResourceIT extends SpringDataCatResourceIT {
public class OpenShiftSpringDataCompositeEntityIT extends SpringDataCompositeEntityIT {
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
import io.quarkus.test.scenarios.OpenShiftScenario;

@OpenShiftScenario
public class OpenShiftBookResourceIT extends SpringDataBookResourceIT {
public class OpenShiftSpringDataSimpleEntityIT extends SpringDataSimpleEntityIT {
}
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
import io.restassured.response.Response;

@QuarkusScenario
public class SpringDataBookResourceIT extends AbstractDbIT {
public class SpringDataCompositeEntityIT extends AbstractDbIT {

@DisabledOnQuarkusVersion(version = "(2\\.[0-6]\\..*)|(2\\.7\\.[0-5]\\..*)|(2\\.8\\.0\\..*)", reason = "Fixed in Quarkus 2.8.1 and backported to 2.7.6.")
@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
import io.restassured.response.Response;

@QuarkusScenario
public class SpringDataCatResourceIT extends AbstractDbIT {
public class SpringDataSimpleEntityIT extends AbstractDbIT {
@Test
void testCustomFindPublicationYearObjectBoolean() {
app.given().get("/cat/customFindDistinctiveObject/2").then()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import io.quarkus.ts.spring.data.AbstractDbIT;

@QuarkusScenario
public class LibraryRepositoryIT extends AbstractDbIT {
public class CrudRepositoryRestResourceIT extends AbstractDbIT {
@Test
void testAllRepositoryMethods() throws InterruptedException {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
import io.quarkus.test.scenarios.OpenShiftScenario;

@OpenShiftScenario
public class OpenShiftArticleRepositoryIT extends ArticleRepositoryIT {
public class OpenShiftCrudRepositoryRestResourceIT extends CrudRepositoryRestResourceIT {
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
import io.quarkus.test.scenarios.OpenShiftScenario;

@OpenShiftScenario
public class OpenShiftLibraryRepositoryIT extends LibraryRepositoryIT {
public class OpenShiftPagingAndSortingRepositoryRestResourceIT extends PagingAndSortingRepositoryRestResourceIT {
}
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
import io.restassured.response.Response;

@QuarkusScenario
class ArticleRepositoryIT extends AbstractDbIT {
class PagingAndSortingRepositoryRestResourceIT extends AbstractDbIT {

@Test
void testAllRepositoryMethods() throws InterruptedException {
Expand Down

0 comments on commit 8332e8c

Please sign in to comment.