1971. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 4/18/2019 5:56:03 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.

1971.1 Files compared

# Location File Last Modified
1 MCCF_EDI_TAS_TASCore v2.0_Build_10.zip\MCCF_EDI_TAS_Vistalink\VAVistaLinkServer\src\test\java\gov\va\tas\resource EcmeWbCommand.java Wed Apr 3 02:27:48 2019 UTC
2 MCCF_EDI_TAS_TASCore v2.0_Build_10.zip\MCCF_EDI_TAS_Vistalink\VAVistaLinkServer\src\test\java\gov\va\tas\resource EcmeWbCommand.java Mon Apr 15 17:44:25 2019 UTC

1971.2 Comparison summary

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

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

1971.4 Active regular expressions

No regular expressions were active.

1971.5 Comparison detail

  1   package go v.va.tas.r esource;
  2  
  3   import io. netty.hand ler.codec. http.HttpM ethod;
  4   import io. netty.util .internal. logging.In ternalLogg er;
  5   import io. netty.util .internal. logging.Lo g4JLoggerF actory;
  6   import org .junit.jup iter.api.T est;
  7  
  8   import sta tic org.ju nit.Assert .assertFal se;
  9  
  10   public cla ss EcmeWbC ommand ext ends Execu te {
  11       privat e static f inal Inter nalLogger  LOGGER = L og4JLogger Factory.ge tInstance( HealthComm and.class) ;
  12  
  13       @Test
  14       public  void test ECMEWB() {
  15           LO GGER.debug ("Test ECM E WB");
  16           //  ECME WB C ommand
  17           St ring uri =  "";
  18             uri = "/TA SECMEWB?IE N=2113336"   // <!-- ht tps:// DNS . URL /ePharmacy _dev/TASEC MEWB?IEN=2 113336 -->
  19           bo olean ret  = true;
  20           re t = testPr ocessReque st(uri, Ht tpMethod.P UT);
  21           LO GGER.debug (Boolean.t oString(re t));
  22           as sertFalse( "Return is  False ",  ret);
  23       }
  24   }