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

TestAssignAsync_SurveyIdIsNull_Throws() private method

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