Microsoft.Protocols.TestSuites.MS_SITESS.S06_GetSite.VerifyIdString C# (CSharp) Méthode

VerifyIdString() public méthode

This method is used to MS-SITESS requirement: MS-SITESS_R375.
public VerifyIdString ( System.Guid expectedGuid, System.Guid actualGuid ) : void
expectedGuid System.Guid The expected site collection identifier of the site collection.
actualGuid System.Guid The actual site collection identifier of the site collection.
Résultat void
        public void VerifyIdString(Guid expectedGuid, Guid actualGuid)
        {
            // If the Id element is consistent with the site collection identifier of the site collection, the following requirement can be captured.
            Site.Log.Add(LogEntryKind.Debug, "Verify MS-SITESS_R375");

            // Verify MS-SITESS requirement: MS-SITESS_R375
            Site.CaptureRequirementIfAreEqual<Guid>(
                expectedGuid,
                actualGuid,
                375,
                @"[In GetSiteResponse] [GetSiteResult:] IdString is a quoted string that is the site collection identifier of the site collection.");
        }