143. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 3/1/2018 12:13:19 PM Central Standard 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.

143.1 Files compared

# Location File Last Modified
1 ehealth_xchange_cif.zip\NHIN_adapter\SpecProcessor\src\test\java\vler\exchange\va\gov\unit\tests MedicationsUnitTest.java Thu Feb 22 14:22:02 2018 UTC
2 ehealth_xchange_cif.zip\NHIN_adapter\SpecProcessor\src\test\java\vler\exchange\va\gov\unit\tests MedicationsUnitTest.java Tue Feb 27 14:46:31 2018 UTC

143.2 Comparison summary

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

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

143.4 Active regular expressions

No regular expressions were active.

143.5 Comparison detail

  1   package vl er.exchang e. DNS     .unit.test s;
  2  
  3   import gov .va.ccd.se rvice.Stan dardizeXML ;
  4  
  5   import jav a.io.FileN otFoundExc eption;
  6  
  7   import org .junit.Tes t;
  8  
  9   import vle r.exchange . DNS     .data.gene ration.Med icationsSe ctionGener ator;
  10   import vle r. DNS     .unit.test s.Abstract TestRunner ;
  11  
  12   public cla ss Medicat ionsUnitTe st extends  AbstractT estRunner  {
  13  
  14           @T est
  15           pu blic void  test1() {
  16                    try  {
  17                             // Str ing[] args  =
  18                             // {"s rc/test/re sources/in put/MULTIC ARE_C32_De identified .xml"};
  19  
  20                             // Str ing[] args  =
  21                             // {"s rc/test/re sources/in put/VAfull ypopulated C32NWHINON E_Mallik.x ml"};
  22                             String [] args =  { "src/tes t/resource s/input/IH IE_C32_Dei dentidfied B1_Encount erText.xml " };
  23  
  24                             // Vit als
  25  
  26                             // Str ing[] args  =
  27                             // {"s rc/test/re sources/in put/KP_C32 _Deidentif ied.xml"};
  28                             // Str ing[] args  =
  29                             // {"s rc/test/re sources/in put/medica tion/VA C3 2 NWHINONE _Meds.xml" };
  30  
  31                             // Med ications t esting
  32                             // Str ing[] args  =
  33                             // {"s rc/test/re sources/in put/medica tion/INHS_ C32_Deiden tified.xml "};
  34                             // Str ing[] args  =
  35                             // {"s rc/test/re sources/in put/medica tion/VA C3 2 NWHINONE _Meds.xml" };
  36  
  37                             // Str ing[] args  =
  38                             // {"s rc/test/re sources/in put/medica tion/KP_C3 2_Deidenti fied.xml"} ;
  39  
  40                             // Str ing[] args  = {
  41                             // "sr c/test/res ources/inp ut/medicat ion/Hawaii  EPIC C32  Deidentifi ed.xml"
  42                             // };
  43  
  44                             // Str ing[] args  =
  45                             // {"s rc/test/re sources/in put/Multic are_C32_De identified .xml"};
  46  
  47                             // Str ing[] args  =
  48                             // {"s rc/test/re sources/in put/medica tion/VA C3 2 NWHINONE _Meds_0320 2014.xml"} ;
  49                             Standa rdizeXML.m ain(args);
  50  
  51                    } ca tch (FileN otFoundExc eption e)  {
  52                             e.prin tStackTrac e();
  53                    } ca tch (Excep tion e) {
  54                             e.prin tStackTrac e();
  55                    }
  56  
  57           }
  58  
  59           //  @Test
  60           pu blic void  generateTe stXml() th rows Excep tion {
  61  
  62                    Medi cationsSec tionGenera tor dataGe nerator =  new Medica tionsSecti onGenerato r();
  63  
  64                    data Generator. setOutputF ileName("c :\\test\\T estMedicat ions.xml") ;
  65                    data Generator. createDocu ment();
  66                    data Generator. createMedi cationSect ion();
  67                    data Generator. createFree TextSig("I  Rule!");
  68                    data Generator. createRout e("noclue1 ", "noclue 2", "noclu e3", "nocl ue4");
  69                    data Generator. generateXm l();
  70  
  71           }
  72  
  73   }