Skip to content

Commit

Permalink
Set 6
Browse files Browse the repository at this point in the history
  • Loading branch information
kaladay committed Aug 3, 2022
1 parent 214efb4 commit dd236e3
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ public void setUp() throws Exception {
when(TEST_FEATURE_REQUEST.getProductId()).thenReturn(TEST_REPOSITORY1_ID);
when(TEST_FEATURE_REQUEST.getTitle()).thenReturn(TEST_FEATURE_REQUEST_TITLE);
when(TEST_FEATURE_REQUEST.getDescription()).thenReturn(TEST_FEATURE_REQUEST_DESCRIPTION);
*/
when(restTemplate.exchange(any(String.class), any(HttpMethod.class), any(HttpEntity.class), any(Class.class)))
.thenAnswer(new Answer<ResponseEntity<byte[]>>() {
@Override
Expand Down Expand Up @@ -346,7 +346,7 @@ public Optional<Estimate> answer(InvocationOnMock invocation) {
lenient().when(statusRepo.findByIdentifier(any(String.class)))
.thenReturn(new Status("None", new HashSet<String>(Arrays.asList(new String[] { "None", "Future" }))));
/*
*/
setField(cardTypeMappingService, "serviceMappingRepo", cardTypeRepo);
setField(statusMappingService, "serviceMappingRepo", statusRepo);
setField(estimateMappingService, "serviceMappingRepo", estimateRepo);
Expand All @@ -359,7 +359,7 @@ public Optional<Estimate> answer(InvocationOnMock invocation) {
setField(gitHubProjectService, "github", github);
setField(gitHubProjectService, "members", new HashMap<String, Member>());
setField(gitHubProjectService, "restTemplate", restTemplate);
*/

}

public void testOne() throws Exception {
Expand Down

0 comments on commit dd236e3

Please sign in to comment.