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

TestAddAsync_SurveyIsNull_ThrowsArgumentNullException() private method

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