Nfield.Services.NfieldSurveysServiceTests.TestRemoveAsync_SurveyIsNull_ThrowsArgumentNullException C# (CSharp) Méthode

TestRemoveAsync_SurveyIsNull_ThrowsArgumentNullException() private méthode

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