817. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 10/3/2017 11:15:45 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.

817.1 Files compared

# Location File Last Modified
1 ehmp.zip\ehmp\ehmp\product\production\soap-handler\src\test\java\us\vistacore\vxsync\config VxSoapConfigurationTest.java Tue Dec 15 14:05:18 2015 UTC
2 ehmp.zip\ehmp\ehmp\product\production\soap-handler\src\test\java\us\vistacore\vxsync\config VxSoapConfigurationTest.java Tue Oct 3 12:23:56 2017 UTC

817.2 Comparison summary

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

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

817.4 Active regular expressions

No regular expressions were active.

817.5 Comparison detail

  1   package us .vistacore .vxsync.co nfig;
  2  
  3   import org .junit.Tes t;
  4  
  5   import sta tic org.ju nit.Assert .assertEqu als;
  6  
  7   public cla ss VxSoapC onfigurati onTest
  8   {
  9       @Test
  10       public  void test GenerateUr l() {
  11           Vx SoapConfig uration cf g = new Vx SoapConfig uration();
  12             assertEqua ls(cfg.gen erateUrlSt ring("http ", " IP          ",  PORT , "/jMeado ws/JMeadow sDataServi ce", "wsdl "),
  13                      "http:// IP          /jMeadows/ JMeadowsDa taService? wsdl");
  14             assertEqua ls(cfg.gen erateUrlSt ring("http s", " IP          ",  PORT , "/jMeado ws/JMeadow sDataServi ce", "wsdl "),
  15                      "https:// IP          /jMeadows/ JMeadowsDa taService? wsdl");
  16             assertEqua ls(cfg.gen erateUrlSt ring("http ", " IP          ",  PORT , "/jMeado ws/JMeadow sDataServi ce", "wsdl "),
  17                      "http:// IP                /jMeadows/ JMeadowsDa taService? wsdl");
  18             assertEqua ls(cfg.gen erateUrlSt ring("http s", " IP          ",  PORT , "/jMeado ws/JMeadow sDataServi ce", "wsdl "),
  19                      "https:// IP                /jMeadows/ JMeadowsDa taService? wsdl");
  20       }
  21   }