Nfield.Services.NfieldSurveysServiceTests.TestUpdateAsync_SurveyArgumentIsNull_ThrowsArgumentNullException C# (CSharp) Method

TestUpdateAsync_SurveyArgumentIsNull_ThrowsArgumentNullException() private method

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