public void Ctor()
		{
			var group = new Group (1);
			
			var invite = new GroupInviteEventArgs (group);
			Assert.AreSame (group, invite.Group);
			Assert.IsFalse (invite.AcceptInvite);
		}
        public void Ctor()
        {
            var group = new Group(1);

            var invite = new GroupInviteEventArgs(group);

            Assert.AreSame(group, invite.Group);
            Assert.IsFalse(invite.AcceptInvite);
        }