176. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 4/12/2018 7:40:39 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.

176.1 Files compared

# Location File Last Modified
1 AHOBPRe_v4.4.17_bld4.zip\Web Services\AHOBPR_RESTful_Service\WCF_BusinessManagerAHOBPRTests\EMIS RegistrantStatusMapperTests.cs Tue Apr 10 16:46:50 2018 UTC
2 AHOBPRe_v4.4.17_bld4.zip\Web Services\AHOBPR_RESTful_Service\WCF_BusinessManagerAHOBPRTests\EMIS RegistrantStatusMapperTests.cs Thu Apr 12 23:04:22 2018 UTC

176.2 Comparison summary

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

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

176.4 Active regular expressions

No regular expressions were active.

176.5 Comparison detail

  1   using Syst em;
  2   using Micr osoft.Visu alStudio.T estTools.U nitTesting ;
  3   using Vete ransAffair s.Registri es.Busines sManagerAH OBPR;
  4  
  5   namespace  WCF_Busine ssManagerA HOBPRTests .EMIS
  6   {
  7       [TestC lass]
  8       public  class Reg istrantSta tusMapperT ests
  9       {
  10             string con  = "Data S ource= DN S
;Initial C atalog=Reg istry_AHOB PRHRE;Inte grated Sec urity=True ;Encrypt=y es;TrustSe rverCertif icate=True ";
  11           [T estMethod]
  12           pu blic void  GetService StatusRetu rnsFourWhe nGivenAnEm ptyEdipi()
  13           {
  14                var edip i = "";
  15                var cut  = new Regi strantServ iceStatusM apper();
  16                var actu al = cut.G etServiceS tatus(edip i);
  17                Assert.A reEqual(4,  actual);
  18           }
  19           // [TestMetho d]
  20           // public voi d GetServi ceStatusCo rrectServi ceStatusWh enGivenPro perEdipi()
  21           // {
  22           //     var ed ipi = "100 6753503";
  23           //     var cu t = new Re gistrantSe rviceStatu sMapper(co n);
  24           //     var ac tual = cut .GetServic eStatus(ed ipi);
  25           //     Assert .AreEqual( 5, actual) ;
  26           // }
  27  
  28           [T estMethod]
  29           pu blic void  GetDataWhe nGivenProp erEdipi()
  30           {
  31                var edip i = "10067 53503";
  32                var cut  = new Regi strantServ iceStatusM apper();
  33                var actu al = cut.G etData(edi pi);
  34                Assert.A reEqual(ed ipi, actua l.edipi);
  35           }
  36       }
  37   }