Exemplo n.º 1
0
        public void CareTeamCommand_Null_ContactEndpointUtil_Should_Throw()
        {
            var command = new CareTeamCommand(new PostDeletePatientRequest(), null, "cid");

            command.Execute();
        }
Exemplo n.º 2
0
        public void CareTeamCommand_Null_Request_Should_Throw()
        {
            var command = new CareTeamCommand(null, new ContactEndpointUtil(), "cid");

            command.Execute();
        }