public async Task DeleteCountryDetails(int countryId) { _employee.Setup(p => p.DeleteCountryDetails(countryId)).Verifiable(); var result = await employeeController.DeleteCountryDetails(countryId); _employee.Verify(); }