Nfield.Services.NfieldSamplingPointInterviewerAssignmentsServiceTests.TestUnassignAsync_SamplingPointIdIsNull_Throws C# (CSharp) Method

TestUnassignAsync_SamplingPointIdIsNull_Throws() private method

private TestUnassignAsync_SamplingPointIdIsNull_Throws ( ) : void
return void
        public void TestUnassignAsync_SamplingPointIdIsNull_Throws()
        {
            var target = new NfieldSamplingPointInterviewerAssignmentsService();
            Assert.Throws<ArgumentNullException>(() =>
                UnwrapAggregateException(target.UnassignAsync(SurveyId, null, InterviewerId)));
        }