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

152.1 Files compared

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

152.2 Comparison summary

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

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

152.4 Active regular expressions

No regular expressions were active.

152.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           
  15           
  16           @T est
  17           pu blic void  test1(){
  18                    try  {
  19                             //Stri ng[] args  = {"src/te st/resourc es/input/M ULTICARE_C 32_Deident ified.xml" };
  20                             //Stri ng[] args  = {"src/te st/resourc es/input/V Afullypopu latedC32NW HINONE_Mal lik.xml"};
  21                             
  22                             //Medi cations te sting
  23                             //Stri ng[] args  = {"src/te st/resourc es/input/m edication/ INHS_C32_D eidentifie d.xml"};
  24                             //Stri ng[] args  = {"src/te st/resourc es/input/m edication/ VA C32 NWH INONE_Meds .xml"};
  25                             
  26                             //Stri ng[] args  = {"src/te st/resourc es/input/m edication/ KP_C32_Dei dentified. xml"};
  27                             
  28                             String [] args =  {"src/test /resources /input/med ication/Ha waii EPIC  C32 Deiden tified.xml "};
  29                             
  30                             
  31                             //Stri ng[] args  = {"src/te st/resourc es/input/M ulticare_C 32_Deident ified.xml" };
  32                             
  33                             
  34                             //Stri ng[] args  = {"src/te st/resourc es/input/m edication/ VA C32 NWH INONE_Meds _03202014. xml"};
  35                             Standa rdizeXML.m ain(args);
  36                    
  37                    } ca tch (FileN otFoundExc eption e)  {
  38                             // TOD O Auto-gen erated cat ch block
  39                             e.prin tStackTrac e();
  40                    } ca tch (Excep tion e) {
  41                             // TOD O Auto-gen erated cat ch block
  42                             e.prin tStackTrac e();
  43                    }
  44                    
  45                    
  46                    
  47                    
  48                    
  49           }
  50           
  51           
  52           
  53           
  54           
  55           @T est
  56           pu blic void  generateTe stXml() th rows Excep tion{
  57                    
  58                    Medi cationsSec tionGenera tor dataGe nerator =  new Medica tionsSecti onGenerato r();
  59                    
  60                    data Generator. setOutputF ileName("c :\\test\\T estMedicat ions.xml") ;
  61                    data Generator. createDocu ment();
  62                    data Generator. createMedi cationSect ion();
  63                    data Generator. createFree TextSig("I  Rule!");
  64                    data Generator. createRout e("noclue1 ","noclue2 ","noclue3 ","noclue4 ");
  65                    data Generator. generateXm l();
  66                    
  67                    
  68                    
  69           }
  70           
  71           
  72           
  73           
  74           
  75   }