Skip to content

Commit

Permalink
Revert "Try setting test order"
Browse files Browse the repository at this point in the history
This reverts commit 57e6a5b.
  • Loading branch information
fjtirado committed Nov 6, 2023
1 parent 57e6a5b commit acc0bc3
Showing 1 changed file with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,7 @@
import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Order;
import org.junit.jupiter.api.MethodOrderer.OrderAnnotation;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.TestMethodOrder;
import org.kie.kogito.event.process.ProcessInstanceVariableDataEvent;
import org.kie.kogito.test.quarkus.QuarkusTestProperty;
import org.kie.kogito.test.quarkus.kafka.KafkaTestClient;
Expand All @@ -51,7 +48,6 @@
import static org.kie.kogito.quarkus.workflows.WorkflowTestUtils.waitForKogitoProcessInstanceEvent;

@QuarkusIntegrationTest
@TestMethodOrder(OrderAnnotation.class)
class PojoServiceIT {

@QuarkusTestProperty(name = KafkaQuarkusTestResource.KOGITO_KAFKA_PROPERTY)
Expand All @@ -77,13 +73,11 @@ public void cleanup() {
}

@Test
@Order(1)
void testPojo() throws Exception {
doIt("pojoService");
}

@Test
@Order(2)
void testFilterPojo() throws Exception {
doIt("pojoServiceFilter");
}
Expand Down

0 comments on commit acc0bc3

Please sign in to comment.