示例#1
0
        public async Task DeleteCountryDetails(int countryId)
        {
            _employee.Setup(p => p.DeleteCountryDetails(countryId)).Verifiable();
            var result = await employeeController.DeleteCountryDetails(countryId);

            _employee.Verify();
        }