public void CareTeamCommand_Null_ContactEndpointUtil_Should_Throw() { var command = new CareTeamCommand(new PostDeletePatientRequest(), null, "cid"); command.Execute(); }
public void CareTeamCommand_Null_Request_Should_Throw() { var command = new CareTeamCommand(null, new ContactEndpointUtil(), "cid"); command.Execute(); }