public void AuthorizedGroupConstructorTest()
 {
     string newGroupKey = string.Empty; // TODO: Initialize to an appropriate value
     string newGroupType = string.Empty; // TODO: Initialize to an appropriate value
     AuthorizedGroup target = new AuthorizedGroup(newGroupKey, newGroupType);
     Assert.Inconclusive("TODO: Implement code to verify target");
 }
 public void AuthorizedGroupConstructorTest2()
 {
     AuthorizedGroup target = new AuthorizedGroup();
     Assert.Inconclusive("TODO: Implement code to verify target");
 }
 public void GetHashCodeTest()
 {
     AuthorizedGroup target = new AuthorizedGroup(); // TODO: Initialize to an appropriate value
     int expected = 0; // TODO: Initialize to an appropriate value
     int actual;
     actual = target.GetHashCode();
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void groupTypeTest()
 {
     AuthorizedGroup target = new AuthorizedGroup(); // TODO: Initialize to an appropriate value
     string expected = string.Empty; // TODO: Initialize to an appropriate value
     string actual;
     target.groupType = expected;
     actual = target.groupType;
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void EqualsTest()
 {
     AuthorizedGroup target = new AuthorizedGroup(); // TODO: Initialize to an appropriate value
     object obj = null; // TODO: Initialize to an appropriate value
     bool expected = false; // TODO: Initialize to an appropriate value
     bool actual;
     actual = target.Equals(obj);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }