60. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 7/10/2017 1:01:44 PM 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.

60.1 Files compared

# Location File Last Modified
1 C:\AraxisMergeCompare\Pri_un\IV-ehmp_cif\ImagingCommon\main\test\java\gov\va\med\imaging\utils ExceptionUtilitiesTest.java Thu Jun 29 17:22:56 2017 UTC
2 C:\AraxisMergeCompare\Pri_re\IV-ehmp_cif\ImagingCommon\main\test\java\gov\va\med\imaging\utils ExceptionUtilitiesTest.java Thu Jul 6 15:02:50 2017 UTC

60.2 Comparison summary

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

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

60.4 Active regular expressions

No regular expressions were active.

60.5 Comparison detail

  1   /**
  2    * 
  3    */
  4   package go v.va.med.i maging.uti ls;
  5  
  6   import jav a.text.Dat eFormat;
  7   import jav a.text.Par seExceptio n;
  8   import jav a.text.Sim pleDateFor mat;
  9   import jav a.util.Dat e;
  10   import jav a.util.Tim eZone;
  11  
  12   import jun it.framewo rk.Assert;
  13   import jun it.framewo rk.TestCas e;
  14  
  15   /**
  16    * @author         
BECKEC
  17    *
  18    */
  19   public cla ss Excepti onUtilitie sTest exte nds TestCa se
  20   {
  21           pu blic void  testReform atExceptio n()
  22           {
  23                    Stri ng testStr ing = null ;
  24                    try
  25                    {
  26                             testSt ring.start sWith("C") ;
  27                    }
  28                    catc h (Excepti on e)
  29                    {
  30                             String  formatted Exception  = Exceptio nUtilities .convertEx ceptionToS tring(e);
  31                             Assert .assertNot Null(forma ttedExcept ion);
  32                    }
  33           }
  34  
  35   }