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

TestRemoveAsync_SurveyIsNull_ThrowsArgumentNullException() private method

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