1. EPMO Open Source Coordination Office Redaction File Detail Report

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

1.1 Files compared

# Location File Last Modified
1 rdk.zip\rdk\product\production\jbpm\CDSInvocationService\src\test\java\gov\va CDSInvocationServiceTest.java Mon Aug 21 12:51:00 2017 UTC
2 rdk.zip\rdk\product\production\jbpm\CDSInvocationService\src\test\java\gov\va CDSInvocationServiceTest.java Tue Oct 3 17:10:49 2017 UTC

1.2 Comparison summary

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

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

1.4 Active regular expressions

No regular expressions were active.

1.5 Comparison detail

  1   package go v.va;
  2  
  3   import sta tic org.ju nit.Assert .assertEqu als;
  4   import sta tic org.ju nit.Assert .assertNot Null;
  5  
  6   import org .jboss.log ging.Logge r;
  7   import org .junit.Tes t;
  8   import org .springfra mework.web .client.Re stTemplate ;
  9  
  10   public cla ss CDSInvo cationServ iceTest ex tends CDSI nvocationS erviceHand ler {
  11           pr ivate stat ic Logger  LOGGER = L ogger.getL ogger(CDSI nvocationS erviceTest .class);
  12  
  13       @Test
  14       public  void test GetCDSInvo cationUrl( ) {
  15           CD SInvocatio nServiceTe st cdsHand ler = new  CDSInvocat ionService Test();
  16           St ring cdsUr l = cdsHan dler.getCD SInvocatio nUrl();
  17             assertEqua ls(cdsUrl,  "http:// IP               /");
  18       }
  19  
  20       @Test
  21       public  void test GetRestTem plate() {
  22           Re stTemplate  restTempl ate = CDSI nvocationS erviceTest .getRestTe mplate();
  23           as sertNotNul l(restTemp late);
  24       }
  25  
  26   }