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

TestAddAsync_SurveyIsNull_ThrowsArgumentNullException() private méthode

private TestAddAsync_SurveyIsNull_ThrowsArgumentNullException ( ) : void
Résultat void
        public void TestAddAsync_SurveyIsNull_ThrowsArgumentNullException()
        {
            var target = new NfieldSurveysService();
            Assert.Throws<ArgumentNullException>(() => UnwrapAggregateException(target.RemoveAsync(null)));
        }
NfieldSurveysServiceTests