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

TestAssignAsync_SamplingPointIdIsNull_Throws() private method

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