Nfield.Services.NfieldSurveysServiceTests.TestUpdateAsync_SurveyArgumentIsNull_ThrowsArgumentNullException C# (CSharp) Метод

TestUpdateAsync_SurveyArgumentIsNull_ThrowsArgumentNullException() приватный Метод

private TestUpdateAsync_SurveyArgumentIsNull_ThrowsArgumentNullException ( ) : void
Результат void
        public void TestUpdateAsync_SurveyArgumentIsNull_ThrowsArgumentNullException()
        {
            var target = new NfieldSurveysService();
            Assert.Throws<ArgumentNullException>(() => UnwrapAggregateException(target.UpdateAsync(null)));
        }
NfieldSurveysServiceTests