Nfield.Services.NfieldSurveyRelocationsServiceTests.TestUpdateAsync_SurveyIdIsNull_Throws C# (CSharp) Method

TestUpdateAsync_SurveyIdIsNull_Throws() private method

private TestUpdateAsync_SurveyIdIsNull_Throws ( ) : void
return void
        public void TestUpdateAsync_SurveyIdIsNull_Throws()
        {
            var target = new NfieldSurveyRelocationsService();
            Assert.Throws<ArgumentNullException>(() => UnwrapAggregateException(target.UpdateAsync(null, new SurveyRelocation())));
        }