349. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 5/23/2019 1:19:13 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.

349.1 Files compared

# Location File Last Modified
1 PATS_R_SourceCode.zip\PATSRIntegrationsCRMOL\UnitTests WHHBGSTests.cs Tue Mar 26 18:05:46 2019 UTC
2 PATS_R_SourceCode.zip\PATSRIntegrationsCRMOL\UnitTests WHHBGSTests.cs Thu May 23 01:36:19 2019 UTC

349.2 Comparison summary

Description Between
Files 1 and 2
Text Blocks Lines
Unchanged 5 150
Changed 4 8
Inserted 0 0
Removed 0 0

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

349.4 Active regular expressions

No regular expressions were active.

349.5 Comparison detail

  1   using Syst em;
  2   using Micr osoft.Visu alStudio.T estTools.U nitTesting ;
  3   using VIMT .VeteranWe bService.M essages;
  4   using WHHB GSGateway. Messages;
  5   using VRM. Integratio n.Serviceb us.Core;
  6   using VRMR est.WebApi ;
  7  
  8   namespace  PATSRUnitT ests
  9   {
  10       [TestC lass]
  11       public  class Uni tTest1
  12       {
  13           pr ivate stat ic Guid _c rmeUserId  = Guid.Par se("45E167 2C-54B4-E4 11-ACD8-00 155D5575E0 ");
  14  
  15           // <http://vr m-crm/IMS/ userdefine d/edit.asp x?etc=8&id =%7b45E167 2C-54B4-E4 11-ACD8-00 155D5575E0 %7d>
  16           pr ivate stat ic string  _crmeOrg =  "VRMUDOCO NFIG";
  17  
  18             private st atic strin g onPremis eVIMTDACSt ring = "ht tps:// DNS . URL /INT/VEFT/ VINEXT"; / /VINeXt on  BAH, thro ugh LB/RP  - http
  19  
  20           pr ivate stat ic WebServ iceDetails  _OnPremDA Cwsd = nul l;
  21           pr ivate stat ic Uri _on PremDACUri  = null;
  22  
  23           #r egion Init ialize
  24           [T estInitial ize]
  25           pu blic void  testInit()
  26           {
  27                _onPremD ACUri = ne w Uri(onPr emiseVIMTD ACString);
  28  
  29                _OnPremD ACwsd = ne w WebServi ceDetails( )
  30                {
  31                    Targ etURL = on PremiseVIM TDACString ,
  32                    WSUs erName = " VEFTNPCCha nnon",
  33                    Pass word = "VA DlMmsp4DKQ 27HBaIwI"
  34                };
  35           }
  36           #e ndregion I nitialize
  37  
  38           [T estMethod]
  39           pu blic void  findPerson BySSN()
  40           {
  41                var req  = new WHH_ SLGatewayR equest
  42                {
  43                    Orga nizationNa me = "UDOD EV",                 
  44                    Lega cyServiceH eaderInfo  = _headerI nfo,
  45                    SSN  = "6665514 14"// "555 668899"//  "666666666 "//"000345 678"//// / /"00034567 8"//"12345 6789"// "1 23123123"/ /"22222222 2"//"11111 1111"//"66 6551414"
  46  
  47                };
  48                var res  = WebApiUt ility.Send Receive<WH H_SLGatewa yRespone>( _onPremDAC Uri, "WHH_ SLGatewayR equest", r eq, null,  _OnPremDAC wsd);
  49                //var re s = req.Se ndReceive< WHH_SLGate wayRespone >(MessageP rocessType .Local);
  50                var test  = res.Mes sageId;
  51  
  52  
  53           }
  54  
  55  
  56           pu blic Heade rInfo _hea derInfo
  57           {
  58                get
  59                {
  60                    retu rn new Hea derInfo()
  61                    {
  62                         Applicatio nName = "C RMUD",
  63                          ClientMach ine = " IP            ",
  64                         LoginName  = "281TUSE R06",
  65                         StationNum ber = "328 "
  66                         //Applicat ionName =  "CRMUD",
  67                          //ClientMa chine = " IP        ",
  68                       / / LoginNam e = "vacog rossj",
  69                       / / StationN umber = "3 17"
  70                         //Applicat ionName =  "CPnE-WS",
  71                         // ClientM achine = " IP           ",
  72                         //LoginNam e = "TYZK6 79",
  73                       / / Password  = "ANDREA 11984#1",
  74                         //StationN umber = "7 41"
  75                    };
  76                }
  77           }
  78       }
  79   }