public void Constructor()
        {
            WebAuthorityType authorityType;

            authorityType = new WebAuthorityType();

            Assert.IsNotNull(authorityType);
        }
 private WebAuthorityType GetAuthorityType()
 {
     if (_authorityType.IsNull())
     {
         _authorityType = new WebAuthorityType();
     }
     return(_authorityType);
 }
 public WebAuthorityTypeTest()
 {
     _authorityType = null;
 }