Skip to content

Commit

Permalink
Disabled integration tests (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
pwargulak committed Oct 10, 2022
1 parent 7b66297 commit a27e31d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@
import java.util.Locale;
import java.util.Set;
import java.util.stream.Collectors;

import org.junit.Ignore;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
Expand All @@ -44,6 +46,7 @@ public class ExposedMessageSourceIntegrationTest {
@Qualifier("messageSource")
private ExposedMessageSource exposedMessageSource;

@Ignore
@Test
public void shouldBePairsOfConstantValueAndPropertyKey() throws IllegalAccessException {
Set<String> propertyKeys = getPropertyKeys();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@

import java.io.IOException;
import org.junit.Before;
import org.junit.Ignore;
import org.junit.Test;
import org.openlmis.servicedesk.service.IssueService;
import org.openlmis.servicedesk.service.jiraservicedesk.customerrequest.CustomerRequest;
Expand Down Expand Up @@ -57,6 +58,7 @@ public void setUp() {
.willReturn(customerRequestResponse);
}

@Ignore
@Test
public void shouldCallCustomerRequestServiceWhenCreatingAnIssue() {
CustomerRequestResponse response = restAssured.given()
Expand All @@ -75,6 +77,7 @@ public void shouldCallCustomerRequestServiceWhenCreatingAnIssue() {
assertEquals(customerRequestResponse, response);
}

@Ignore
@Test
public void shouldAttachFileToIssue() throws IOException {
ClassPathResource fileToUpload = new ClassPathResource("some-file.txt");
Expand Down

0 comments on commit a27e31d

Please sign in to comment.