4015. 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.

4015.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 TestPatientDemographicsQuery.java Fri Apr 21 20:03:28 2017 UTC

4015.2 Comparison summary

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

4015.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

4015.4 Active regular expressions

No regular expressions were active.

4015.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 .PatientDe mographics Query;
        5   import gov .va.nvap.s ervice.pdq .PatientDe mographics 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 org .junit.Tes t;
        13  
        14   public cla ss TestPat ientDemogr aphicsQuer y extends  AbstractTe stCase {
        15  
        16           @R esource(na me = "pdqS ervice")
        17           Pd qService p dqService;
        18  
        19           @T est
        20           pu blic void  testPatien tDemograpi csQuery()  throws JAX BException ,
        21                             PdqExc eption {
        22                    fina l PatientD emographic sQuery que ry = new P atientDemo graphicsQu ery();
        23                    quer y.setPatie ntId("1012 581676V377 802");
        24                    fina l PatientD emographic sResponse  response =  this.pdqS ervice
        25                                      .getPati entDemogra phics(quer y);
        26                    juni t.framewor k.Assert.a ssertEqual s("CHDRONE ", respons e
        27                                      .getPati entDemogra phics().ge tFirstName ());
        28           }
        29   }