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

174.1 Files compared

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

174.2 Comparison summary

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

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

174.4 Active regular expressions

No regular expressions were active.

174.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.Emis;
  4   using Syst em.Collect ions.Gener ic;
  5   using Vete ransAffair s.Registri es.Busines sAHOBPR;
  6  
  7   namespace  WCF_Busine ssManagerA HOBPRTests .EMIS
  8   {
  9       [TestC lass]
  10       public  class Mil itaryOccup ationHisto ryManagerT ests
  11       {
  12           pr ivate Mili taryOccupa tionHistor yManager _ cut;
  13  
  14           [T estInitial ize()]
  15           pu blic void  MyTestInit ialize()
  16           {
  17                  _cut = new  MilitaryO ccupationH istoryMana ger("Data  Source= DN S     ; Initial  Catalog=Re gistry_AHO BPRHRE;Int egrated Se curity=Tru e;Encrypt= yes");
  18           }
  19           [T estMethod]
  20           pu blic void  CreateOccu pationHist ory_Return s_Correct_ Number_Of_ Entries()
  21           {
  22                var actu al = _cut. GetRegistr antHistory ("60010100 01");
  23                Assert.A reEqual(8,  actual.Ke ys.Count);
  24           }
  25  
  26           [T estMethod]
  27           pu blic void  CreateOccu pationHist ory_Return s_Five_Ent ries()
  28           {
  29                var actu al = _cut. GetRegistr antHistory ("10051366 24");
  30                Assert.A reEqual(5,  actual.Ke ys.Count);
  31           }
  32           [T estMethod]
  33           pu blic void  CreateOccu pationHist ory_Return s_Eight_En tries()
  34           {
  35                var actu al = _cut. GetRegistr antHistory ("12933073 90");
  36                Assert.A reEqual(7,  actual.Ke ys.Count);
  37           }
  38           
  39  
  40       }
  41   }