Skip to content

Commit

Permalink
Renames IT classfiles
Browse files Browse the repository at this point in the history
  • Loading branch information
appiepollo14 committed Nov 5, 2023
1 parent dedafa2 commit 4ef68ce
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,16 +36,16 @@
import org.testcontainers.junit.jupiter.Container;

@MicroShedTest
public class JaxrsJsonIT {
public class PayaraIT {

@Container
public static ApplicationContainer app = new ApplicationContainer()
.withAppContextRoot("/myservice")
.withReadinessPath("/myservice/app/people");

@RESTClient
public static PersonService personSvc;

@Test
public void testCreatePerson() {
Long createId = personSvc.createPerson("Hank", 42);
Expand Down Expand Up @@ -127,7 +127,7 @@ public void testCreateBadPersonNegativeAge() {
public void testCreateBadPersonNameTooLong() {
assertThrows(BadRequestException.class, () -> personSvc.createPerson("NameTooLongPersonNameTooLongPersonNameTooLongPerson", 5));
}

@Test
public void testNonJaxrsMethod() {
assertThrows(ProcessingException.class, () -> personSvc.nonJaxrsMethod());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
import org.testcontainers.junit.jupiter.Container;

@MicroShedTest
public class JaxrsJsonIT {
public class WildFlyIT {

@Container
public static ApplicationContainer app = new ApplicationContainer()
Expand Down

0 comments on commit 4ef68ce

Please sign in to comment.