6. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 10/4/2017 8:04:33 AM Central 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.

6.1 Files compared

# Location File Last Modified
1 rdk.zip\rdk\product\production\jbpm\EhmpServices\src\test\java\gov\va\rdk\http\resources RdkResourceUtilTest.java Mon Aug 21 12:51:00 2017 UTC
2 rdk.zip\rdk\product\production\jbpm\EhmpServices\src\test\java\gov\va\rdk\http\resources RdkResourceUtilTest.java Tue Oct 3 17:11:02 2017 UTC

6.2 Comparison summary

Description Between
Files 1 and 2
Text Blocks Lines
Unchanged 5 86
Changed 4 8
Inserted 0 0
Removed 0 0

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

6.4 Active regular expressions

No regular expressions were active.

6.5 Comparison detail

  1   package go v.va.rdk.h ttp.resour ces;
  2  
  3   import sta tic org.ju nit.Assert .assertEqu als;
  4  
  5   import org .jboss.log ging.Logge r;
  6   import org .junit.Aft er;
  7   import org .junit.Bef ore;
  8   import org .junit.Tes t;
  9  
  10   import gov .va.ehmp.s ervices.ex ception.Eh mpServices Exception;
  11  
  12  
  13   public cla ss RdkReso urceUtilTe st extends  RdkResour ceUtil {
  14           pr ivate stat ic Logger  LOGGER = L ogger.getL ogger(RdkR esourceUti lTest.clas s);
  15  
  16           @B efore
  17           pu blic void  setUp() th rows Excep tion {
  18                    
  19           }
  20  
  21           @A fter
  22           pu blic void  tearDown()  throws Ex ception {
  23           }
  24  
  25           @T est
  26           pu blic void  testGetRDK Url() thro ws EhmpSer vicesExcep tion {
  27                    LOGG ER.debug(" Starting t est run");
  28                    RdkR esourceUti lTest test 1 = new Rd kResourceU tilTest();
  29                    Stri ng resourc eUrl = tes t1.getRDKU rl(RDK_FET CHSERVER_C ONFIG);
  30                     assertEqua ls(resourc eUrl,"http :// IP                8/" );
  31                    reso urceUrl =  test1.getR DKUrl(RDK_ WRITEBACKS ERVER_CONF IG);
  32                     assertEqua ls(resourc eUrl,"http :// IP                9/" );
  33  
  34                    //Ch eck the lo gs to see  only one e ntry of:
  35                    //Lo ading Prop erties fil es; rdkcon fig.proper ties - rdk writebackc onfig.prop erties
  36                    RdkR esourceUti lTest test 2 = new Rd kResourceU tilTest();
  37                    reso urceUrl =  test2.getR DKUrl(RDK_ FETCHSERVE R_CONFIG);
  38                     assertEqua ls(resourc eUrl,"http :// IP                8/" );
  39                    reso urceUrl =  test2.getR DKUrl(RDK_ WRITEBACKS ERVER_CONF IG);
  40                     assertEqua ls(resourc eUrl,"http :// IP                9/" );
  41                    
  42                    //Ch eck the lo gs to see  there is s till only  one entry  of:
  43                    //Lo ading Prop erties fil es; rdkcon fig.proper ties - rdk writebackc onfig.prop erties
  44                    
  45           }
  46  
  47   }