The following assertion error seems to occur, when testing my AlphavantageService.java class
Though the stock quotes are getting fetched and filtered out properly, something’s not right?
Help is appreciated
List<String> propertyKeyValues = urlCaptor.getAllValues();
List<String> propertyKeyValues2 = urlCaptorWithMap.getAllValues();
List<URI> propertyKeyValues3 = urlCaptorAsUri.getAllValues();
assertTrue(!propertyKeyValues.isEmpty() || !propertyKeyValues2.isEmpty() || !propertyKeyValues3
.isEmpty());
@anand-crio Please Have a look