expectApiCalled method
Implementation
void expectApiCalled(String apiName, int times) {
final actual = context.mockApiProvider.callCount(apiName);
if (actual != times) {
throw EnsembleTestFailure(
'Expected API "$apiName" to be called $times times, but it was called $actual times. '
'${apiCallSummary()}',
);
}
}