Skip to content

Commit

Permalink
added test
Browse files Browse the repository at this point in the history
  • Loading branch information
ElisKina-dev committed Jan 30, 2025
1 parent 82921b2 commit f69a5fc
Showing 1 changed file with 13 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,17 @@ void whenGetIngestionFlowFileControllerApiThenAuthenticationShouldBeSetInThreadS
String.class,
processExecutionsApisHolder::unload);
}

@Test
void whenGetIngestionFlowFileEntityControllerApiThenAuthenticationShouldBeSetInThreadSafeMode() throws InterruptedException {
assertAuthenticationShouldBeSetInThreadSafeMode(
accessToken -> {
processExecutionsApisHolder.getIngestionFlowFileEntityControllerApi(accessToken)
.crudGetIngestionflowfile("123");
return null;
},
String.class,
processExecutionsApisHolder::unload);
}

}

0 comments on commit f69a5fc

Please sign in to comment.