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

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

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