Exemplo n.º 1
0
        public void Get_Participant_Progress_Test()
        {
            ConvioParticipants convioParticipants = new ConvioParticipants();
            ParticipantProgress participants = convioParticipants.GetProgress(4398520, 32848);

            Assert.IsTrue(participants.Personal != null);
        }
Exemplo n.º 2
0
        public void Get_Constituent_Info_Test()
        {
            ConvioParticipants convioParticipants = new ConvioParticipants();
            Constituent participants = convioParticipants.GetConstituentInfo(4398520);

            Assert.IsTrue(participants.Name != null);
        }
Exemplo n.º 3
0
 public void Get_Particpants_For_Event_Test()
 {
     ConvioParticipants convioParticipants = new ConvioParticipants();
     List<Participant> participants = convioParticipants.GetParticipantsForEvent(32848);
     Assert.IsTrue(participants.Count > 0);
 }