4018. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 6/9/2017 3:51:14 PM Eastern Daylight Time. See www.araxis.com for information about Merge. This report uses XHTML and CSS2, and is best viewed with a modern standards-compliant browser. For optimum results when printing this report, use landscape orientation and enable printing of background images and colours in your browser.

4018.1 Files compared

# Location File Last Modified
1 Fri Jun 9 19:51:14 2017 UTC
2 eHealth_Exch (eHealth Exchange Enhancements) Build 3 docs & code_May_2017.zip\VAP_CIF_CODE0502.zip\VAP_CIF_CODE0502\VAP_CIF_CODE0502\nvap-server\src\test\java\gov\va\nvap\server\test\endpoint\pdq TestPatientSiteListQuery.java Fri Apr 21 20:03:28 2017 UTC

4018.2 Comparison summary

Description Between
Files 1 and 2
Text Blocks Lines
Unchanged 0 0
Changed 0 0
Inserted 1 29
Removed 0 0

4018.3 Comparison options

Whitespace
Character case Differences in character case are significant
Line endings Differences in line endings (CR and LF characters) are ignored
CR/LF characters Not shown in the comparison detail

4018.4 Active regular expressions

No regular expressions were active.

4018.5 Comparison detail

        1   package go v.va.nvap. server.tes t.endpoint .pdq;
        2  
        3   import gov .va.nvap.s erver.test .common.Ab stractTest Case;
        4   import gov .va.nvap.s ervice.pdq .PatientCo rrelations Query;
        5   import gov .va.nvap.s ervice.pdq .PatientCo rrelations Response;
        6   import gov .va.nvap.s ervice.pdq .PdqExcept ion;
        7   import gov .va.nvap.s ervice.pdq .PdqServic e;
        8  
        9   import jav ax.annotat ion.Resour ce;
        10   import jav ax.xml.bin d.JAXBExce ption;
        11  
        12   import jun it.framewo rk.Assert;
        13  
        14   import org .junit.Tes t;
        15  
        16   public cla ss TestPat ientSiteLi stQuery ex tends Abst ractTestCa se {
        17  
        18           @R esource(na me = "pdqS ervice")
        19           Pd qService p dqService;
        20  
        21           @T est
        22           pu blic void  testPatien tSiteListQ uery() thr ows JAXBEx ception, P dqExceptio n {
        23                    fina l PatientC orrelation sQuery pat ientCorrel ationsQuer y = new Pa tientCorre lationsQue ry();
        24                    pati entCorrela tionsQuery .setPatien tId("10125 81676V3778 02");
        25                    fina l PatientC orrelation sResponse  patientCor relationsR esponse =  this.pdqSe rvice
        26                                      .getCorr elatedFaci lities(pat ientCorrel ationsQuer y);
        27                    Asse rt.assertT rue(patien tCorrelati onsRespons e.getFacil ities().si ze() > 0);
        28           }
        29   }