28. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 1/17/2019 1:51:41 PM Central Standard 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.

28.1 Files compared

# Location File Last Modified
1 C:\AraxisMergeCompare\Pri_un\ccra\ccra_automation\VA.QA.TestProjects\VA.QA.CCRA.TestCases\TestTargets\HSRM UserRoles.cs Thu Jan 10 13:20:38 2019 UTC
2 C:\AraxisMergeCompare\Pri_re\ccra\ccra_automation\VA.QA.TestProjects\VA.QA.CCRA.TestCases\TestTargets\HSRM UserRoles.cs Thu Jan 10 16:41:20 2019 UTC

28.2 Comparison summary

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

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

28.4 Active regular expressions

No regular expressions were active.

28.5 Comparison detail

  1    using Syst em;
  2    using Syst em.Collect ions.Gener ic;
  3    using Syst em.Linq;
  4    using Syst em.Text;
  5    using Syst em.Threadi ng;
  6    using Syst em.Threadi ng.Tasks;
  7    using VA.Q A.Common.U IFramework .Selenium;
  8    using Open QA.Seleniu m;
  9    using VA.Q A.CCRA.Tes tCases.Pag es;
  10    using Open QA.Seleniu m.Support. PageObject s;
  11    using VA.Q A.CCRA.Tes tCases.Com mon;
  12    using NUni t.Framewor k;
  13    namespace  VA.QA.CCRA .TestCases
  14    {
  15   
  16        public  class Use rRoles 
  17        {
  18   
  19   
  20              //VA Super visor     Username:  AI   P assword:  AI  s
  21              //VA CC St aff Member  Username:   AI      Password:  AI  s
  22              //VA CC Cl inical Coo rdinator U sername:  AI      Password:  AI  s
  23              //Communit y Staff Me mber    Username:  AI      Password:  AI  s
  24              //Communit y Clinicia n Username AI     Password:  AI  s
  25              //Communit y Network  Provider    Username:  AI  Password:   AI  s
  26              //VA Custo mer Servic e Username AI     Password:  AI  s
  27   
  28   
  29   
  30            // TC 49967 U S 47512 Ab ility to A uthenticat e Users -  User Roles
  31   
  32            [T est]
  33            pu blic void  LoginAndLo gout_VASup ervisor()
  34   
  35            {
  36                 SharedTe stMethods. LoginAsVAS upervisor( );
  37                 SharedTe stMethods. LogoutAndE xit();
  38            }
  39   
  40            [T est]
  41            pu blic void  LoginAndLo gout_VACCS taffMember ()
  42   
  43            {
  44                 SharedTe stMethods. LoginAsVAC CStaffMemb er ();
  45                 var page Home = new  PageHome( SharedTest Methods.Dr iver);
  46                 pageHome .linkMainM enu.Click( );
  47                 Thread.S leep(1000) ;
  48                 //TestAs sert.IsFal se(pageHom e.linkInsi ghts.Displ ayed);
  49                 //TestAs sert.IsFal se(pageHom e.linkRepo rts.Displa yed);
  50                 pageHome .linkRefer ralList.Cl ick();
  51                 Thread.S leep(1000) ;
  52                 SharedTe stMethods. LogoutAndE xit();
  53        }
  54   
  55            [T est]
  56            pu blic void  LoginAndLo gout_VACCC linicalCoo rdinator()
  57   
  58            {
  59                 SharedTe stMethods. LoginAsVAC CClinicalC oordinator ();
  60                 //TestAs sert.IsTru e(pageHome .userNameV ACCStaffMe mber.Displ ayed);
  61                 SharedTe stMethods. LogoutAndE xit();
  62            }
  63   
  64   
  65            [T est]
  66            pu blic void  LoginAndLo gout_Commu nityStaffM ember()
  67   
  68            {
  69                 SharedTe stMethods. LoginAsCom munityStaf fMember();
  70                 //TestAs sert.IsTru e(pageHome .userNameV ACCStaffMe mber.Displ ayed);
  71                 SharedTe stMethods. LogoutAndE xit();
  72            }
  73   
  74            [T est]
  75            pu blic void  LoginAndLo gout_Commu nityClinic ian()
  76            {
  77                 SharedTe stMethods. LoginAsCom munityClin ician();
  78                 //TestAs sert.IsTru e(pageHome .userNameV ACCStaffMe mber.Displ ayed);
  79                 SharedTe stMethods. LogoutAndE xit();
  80            }
  81   
  82            [T est]
  83            pu blic void  LoginAndLo gout_Commu nityNetwor kProvider( )
  84   
  85            {
  86                 SharedTe stMethods. LoginAsCom munityNetw orkProvide r();
  87                 //TestAs sert.IsTru e(pageHome .userNameV ACCStaffMe mber.Displ ayed);
  88                 SharedTe stMethods. LogoutAndE xit();
  89            }
  90   
  91            [T est]
  92            pu blic void  LoginAndLo gout_AsVAC ustomerSer vice()
  93            {
  94                 SharedTe stMethods. LoginAsVAC ustomerSer vice();
  95                 //TestAs sert.IsTru e(pageHome .userNameV ACCStaffMe mber.Displ ayed);
  96                 SharedTe stMethods. LogoutAndE xit();
  97            }
  98   
  99        }
  100    }