Nfield.Services.NfieldSurveysServiceTests.TestUpdateAsync_SurveyArgumentIsNull_ThrowsArgumentNullException C# (CSharp) 메소드

TestUpdateAsync_SurveyArgumentIsNull_ThrowsArgumentNullException() 개인적인 메소드

        public void TestUpdateAsync_SurveyArgumentIsNull_ThrowsArgumentNullException()
        {
            var target = new NfieldSurveysService();
            Assert.Throws<ArgumentNullException>(() => UnwrapAggregateException(target.UpdateAsync(null)));
        }
NfieldSurveysServiceTests