コード例 #1
0
        public void CareTeamCommand_Null_ContactEndpointUtil_Should_Throw()
        {
            var command = new CareTeamCommand(new PostDeletePatientRequest(), null, "cid");

            command.Execute();
        }
コード例 #2
0
        public void CareTeamCommand_Null_Request_Should_Throw()
        {
            var command = new CareTeamCommand(null, new ContactEndpointUtil(), "cid");

            command.Execute();
        }