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

145.1 Files compared

# Location File Last Modified
1 ehealth_xchange_cif.zip\NHIN_adapter\SpecProcessor\src\test\java\vler\exchange\va\gov\unit\tests SuppliesTest.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 SuppliesTest.java Tue Feb 27 14:46:32 2018 UTC

145.2 Comparison summary

Description Between
Files 1 and 2
Text Blocks Lines
Unchanged 3 66
Changed 2 4
Inserted 0 0
Removed 0 0

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

145.4 Active regular expressions

No regular expressions were active.

145.5 Comparison detail

  1   /**
  2    * 
  3    */
  4   package vl er.exchang e. DNS     .unit.test s;
  5  
  6   import jav a.io.File;
  7   import jav a.io.FileO utputStrea m;
  8   import jav a.io.Outpu tStreamWri ter;
  9  
  10   import org .junit.Tes t;
  11   import org .openhealt htools.mdh t.uml.cda. Supply;
  12   import org .openhealt htools.mdh t.uml.cda. ccd.CCDFac tory;
  13   import org .openhealt htools.mdh t.uml.cda. ccd.Contin uityOfCare Document;
  14   import org .openhealt htools.mdh t.uml.cda. ccd.PlanOf CareSectio n;
  15   import org .openhealt htools.mdh t.uml.cda. util.CDAUt il;
  16  
  17   import vle r.exchange . DNS     .data.gene ration.Gen erators;
  18  
  19   /**
  20    * @author  ChmaraC
  21    * 
  22    */
  23   public cla ss Supplie sTest {
  24  
  25           @T est
  26           pu blic void  test() thr ows Except ion {
  27                    Cont inuityOfCa reDocument  ccd = (Co ntinuityOf CareDocume nt) Genera tors.creat eCCDDocume nt();
  28                    Supp ly supply  = Generato rs.createS upply();
  29  
  30                    Plan OfCareSect ion pcs =  CCDFactory .eINSTANCE .createPla nOfCareSec tion().ini t();
  31                    pcs. addSupply( supply);
  32                    ccd. addSection (pcs);
  33           }
  34  
  35   }