14088. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 1/4/2018 4:54:42 PM Eastern 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.

14088.1 Files compared

# Location File Last Modified
1 CHAMPVA_Benefit_Eligibility_v1.0.0.zip\webservice\champvapay-service\src\test\java\gov\va\med\mbcp\champva\rest ChampVAApplicationTest.java Thu Dec 21 19:52:28 2017 UTC
2 CHAMPVA_Benefit_Eligibility_v1.0.0.zip\webservice\champvapay-service\src\test\java\gov\va\med\mbcp\champva\rest ChampVAApplicationTest.java Thu Jan 4 21:01:54 2018 UTC

14088.2 Comparison summary

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

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

14088.4 Active regular expressions

No regular expressions were active.

14088.5 Comparison detail

  1   /**
  2    * The pac kage gov.v a.med.mbcp .champva.r est contai ns the RES Tful Web A pplication  & Resourc e classes  for
  3    * retriev al of Code  Results f rom the ta rget VistA  instance.
  4    * 
  5    */
  6   package go v.va.med.m bcp.champv a.rest;
  7  
  8   import sta tic org.ju nit.Assert .assertEqu als;
  9  
  10   import jav a.util.Ite rator;
  11   import jav a.util.Set ;
  12  
  13   import org .junit.Aft er;
  14   import org .junit.Bef ore;
  15   import org .junit.Tes t;
  16  
  17   /**
  18    * Test cl ass for th e ChampVAA pplication  Class.
  19    * 
  20    * @author   PII
  21    * @versio n 1.0.0
  22    */
  23   public cla ss ChampVA Applicatio nTest {
  24  
  25       privat e ChampVAA pplication  mChampVAA pplication  = null;
  26       
  27       @Befor e
  28       public  void setU p() throws  Exception  {
  29           mC hampVAAppl ication =  new ChampV AApplicati on();
  30       }
  31  
  32       @After
  33       public  void tear Down() thr ows Except ion {
  34           mC hampVAAppl ication =  null;
  35       }
  36  
  37       @Test
  38       public  void test ThatGetCla ssesReturn sSetWithOn eChampVARe source() {
  39           Se t<Class<?> > classes  = mChampVA Applicatio n.getClass es();
  40           It erator<Cla ss<?>> it  = classes. iterator() ;
  41           Cl ass<?> res ource = it .next();
  42           as sertEquals (1, classe s.size());
  43           as sertEquals (ChampVARe source.cla ss, resour ce);
  44       }
  45  
  46   }