22490. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 4/2/2019 9:49:01 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.

22490.1 Files compared

# Location File Last Modified
1 JLV_JLV 2_7_2_0_0.zip\JLV_Src\jMeadows\src\test\integration\java\gov\va\med\jmeadows\dao\patient QuestionnaireDaoTest.java Wed Mar 20 21:45:36 2019 UTC
2 JLV_JLV 2_7_2_0_0.zip\JLV_Src\jMeadows\src\test\integration\java\gov\va\med\jmeadows\dao\patient QuestionnaireDaoTest.java Tue Apr 2 13:30:31 2019 UTC

22490.2 Comparison summary

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

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

22490.4 Active regular expressions

No regular expressions were active.

22490.5 Comparison detail

  1   /*
  2    * Janus 4 .0 (c)
  3    * Copyrig ht (c) 201 5 Hawaii R esource Gr oup LLC. A ll Rights  Reserved.
  4    * Develop ed for the  Pacific T elehealth  & Technolo gy Hui and  the Pacif ic Joint I nformation  Technolog y Center
  5    * Contrib utors:
  6    *      Ho norable Se nator Dani el K. Inou ye
  7    *      VA  Pacific I slands Hea lth Care S ystem
  8    *      Tr ipler Army  Medical C enter
  9    */
  10    
  11    
  12   package go v.va.med.j meadows.da o.patient;
  13  
  14   import gov .va.med.jm eadows.com mon.JMeado wsExceptio n;
  15   import gov .va.med.jm eadows.dao .beans.For m;
  16   import gov .va.med.jm eadows.dao .beans.JMe adowsQuery ;
  17   import gov .va.med.jm eadows.dao .beans.JMe dResultCol lection;
  18   import org .junit.Tes t;
  19  
  20   import jav a.util.Lis t;
  21  
  22   import sta tic org.ju nit.Assert .assertTru e;
  23   import sta tic org.ju nit.Assert .fail;
  24  
  25   /**
  26    *
  27    * @author   DNS
  28    */
  29   public cla ss Questio nnaireDaoT est extend s DaoBaseT est
  30   {
  31       privat e Question naireDao q Dao;
  32  
  33       public  Questionn aireDaoTes t() throws  JMeadowsE xception
  34       {
  35           su per();
  36           qD ao = new Q uestionnai reDao();
  37       }
  38  
  39       @Test
  40       public  void test GetPatient Forms()
  41       {
  42           tr y {
  43                JMeadows Query qb =  setupQuer y(user, pa tient, sta rtDate, en dDate);
  44                JMedResu ltCollecti on resultC ollection  = qDao.get PatientFor ms(qb);
  45                List<For m> forms =  resultCol lection.ge tForms();
  46                assertTr ue(forms.s ize() > 0) ;
  47                testForB eanMeta(fo rms);
  48           }  catch (JMe adowsExcep tion ex) {
  49                fail(ex. getMessage ());
  50           }
  51       }
  52   }