Home | News | Projects | Releases
Bugs | RFE | Repositories | Help
Added unit tests for EXDATE in iCalendarEvent/ObjectDataTests.
[xestiacalendar/.git] / source / tests / xestiacalendar_icaleventload.h
1 // xestiacalendar_icaleventload.h - Xestia Calendar iCalendar Event Component Unit Tests
2 //
3 // (c) 2016 Xestia Software Development.
4 //
5 // This file is part of Xestia Calendar.
6 //
7 // Xestia Address Book is free software: you can redistribute it and/or modify
8 // it under the terms of the GNU General Public License as published by the
9 // Free Software Foundation, version 3 of the license.
10 //
11 // Xestia Address Book is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
15 //
16 // You should have received a copy of the GNU General Public License along
17 // with Xestia Calendar. If not, see <http://www.gnu.org/licenses/>
19 #include "../objects/calendarevent/CalendarEvent.h"
21 TEST(iCalendarEvent, BasicTests){
23         CalendarEventObject TestEvent;
24         
25         ASSERT_EQ(CALENDAROBJECTLOAD_MISSING, TestEvent.LoadFile("iCalendarEvent-Missing.vcf"));
26         ASSERT_EQ(CALENDAROBJECTLOAD_CANNOTOPEN, TestEvent.LoadFile("iCalendarEvent-InvalidPermissions.vcf"));
27         ASSERT_EQ(CALENDAROBJECTLOAD_OK, TestEvent.LoadFile("iCalendarEvent-Load1.vcf"));
28         
29 }
31 TEST(iCalendarEvent, BaseObjectVerifyTests){
33         CalendarEventObject TestEvent;
34         TestEvent.LoadFile("iCalendarEvent-Load1.vcf");
35         ASSERT_EQ(CALENDAROBJECTVALID_OK, TestEvent.ValidBaseObject());
36         
37         // Tests for METHOD.
38         
39         ASSERT_EQ("REQUEST", TestEvent.MethodData);
40         ASSERT_EQ("EXAMPLE=DATA", TestEvent.MethodTokens);
41         
42         // Tests for CALSCALE.
43         
44         ASSERT_EQ("GREGORIAN", TestEvent.CalendarScaleData);
45         ASSERT_EQ("MORE=YES", TestEvent.CalendarScaleTokens);
46         
47 }
49 TEST(iCalendarEvent, ObjectDataTests){
50         
51         CalendarEventObject TestEvent;
52         ASSERT_EQ(CALENDAROBJECTLOAD_OK, TestEvent.LoadFile("iCalendarEvent-Load2.vcf"));
53         ASSERT_EQ(CALENDAROBJECTVALID_OK, TestEvent.ValidBaseObject());
54         
55         // Tests for DTSTAMP.
56         
57         ASSERT_EQ("20160122T124100Z", TestEvent.DateTimeStampData);
58         ASSERT_EQ("OTHER=PARAM", TestEvent.DateTimeStampTokens);
59         
60         // Tests for UID.
61         
62         ASSERT_EQ("b3a16392-ad86-4061-be53-c215af2306e0", TestEvent.UniqueID);
63         ASSERT_EQ("UNIQUEPARAM=CERTAINLY;OKAY=MAYBENOT", TestEvent.UniqueIDTokens);
64         
65         // Tests for DTSTART.
66         
67         ASSERT_EQ("20160122T183000Z", TestEvent.DateTimeStartData);
68         ASSERT_EQ("DATE-TIME", TestEvent.DateTimeStartDataValue);
69         ASSERT_EQ("Europe/Truro", TestEvent.DateTimeStartDataTimeZoneID);
70         ASSERT_EQ("PARAMONE=YES;PARAMTWO=NO", TestEvent.DateTimeStartDataTokens);
71         
72         // Tests for CLASS.
73         
74         ASSERT_EQ("PUBLIC", TestEvent.ClassData);
75         ASSERT_EQ("CHOCOLATE=BAR", TestEvent.ClassDataTokens);
77         // Tests for CREATED.
79         ASSERT_EQ("20160123T081100Z", TestEvent.DateTimeCreatedData);
80         ASSERT_EQ("CARAMEL=PLEASE", TestEvent.DateTimeCreatedTokens);
81         
82         // Tests for DESCRIPTION.
83         
84         std::string DescriptionData;
85         std::string DescriptionAltRep;
86         std::string DescriptionLanguage;
87         std::string DescriptionTokens;
88         
89         if (TestEvent.DescriptionList.begin() != TestEvent.DescriptionList.end()){
90                 DescriptionData = TestEvent.DescriptionList[0];
91         }
93         if (TestEvent.DescriptionListAltRep.begin() != TestEvent.DescriptionListAltRep.end()){
94                 DescriptionAltRep = TestEvent.DescriptionListAltRep[0];
95         }
97         if (TestEvent.DescriptionListAltRep.begin() != TestEvent.DescriptionListAltRep.end()){
98                 DescriptionLanguage = TestEvent.DescriptionListLanguage[0];
99         }
101         if (TestEvent.DescriptionListTokens.begin() != TestEvent.DescriptionListTokens.end()){
102                 DescriptionTokens = TestEvent.DescriptionListTokens[0];
103         }
104         
105         ASSERT_EQ("This is a description of the event.", DescriptionData);
106         ASSERT_EQ("null:nodata", DescriptionAltRep);
107         ASSERT_EQ("kw", DescriptionLanguage);
108         ASSERT_EQ("EXAMPLE=TOKEN;MOREDATA=YES", DescriptionTokens);
110         // Tests for GEO.
111         
112         ASSERT_EQ("5.0;5.0", TestEvent.GeographicData);
113         ASSERT_EQ("EXAMPLE=MEEP", TestEvent.GeographicTokens);
114         
115         // Tests for LAST-MODIFIED.
116         
117         ASSERT_EQ("20160124T093000Z", TestEvent.LastModifiedData);
118         ASSERT_EQ("FUTURE=ODD", TestEvent.LastModifiedTokens);
120         // Tests for LOCATION.
122         ASSERT_EQ("The Basement, Truro", TestEvent.LocationData);
123         ASSERT_EQ("null:nodata", TestEvent.LocationDataAltRep);
124         ASSERT_EQ("kw", TestEvent.LocationDataLanguage);
125         ASSERT_EQ("EXACT=NO", TestEvent.LocationDataTokens);
126         
127         // Tests for ORGANIZER.
128         
129         ASSERT_EQ("mailto:organiser@example.com", TestEvent.OrganiserData);
130         ASSERT_EQ("ExampleOrganiser", TestEvent.OrganiserDataCommonName);
131         ASSERT_EQ("null:nodata", TestEvent.OrganiserDataDirectoryEntry);
132         ASSERT_EQ("mailto:organiser.noreply@example.com", TestEvent.OrganiserDataSentByParam);
133         ASSERT_EQ("kw", TestEvent.OrganiserDataLanguage);
134         ASSERT_EQ("HAPPY=DAYS", TestEvent.OrganiserDataTokens);
135         
136         // Tests for PRIORITY.
137         
138         ASSERT_EQ(5, TestEvent.PriorityData);
139         ASSERT_EQ("STATUS=DEFAULT", TestEvent.PriorityTokens);
141         // Tests for SEQUENCE.
142         
143         ASSERT_EQ(3, TestEvent.SequenceData);
144         ASSERT_EQ("TEST=YAY", TestEvent.SequenceTokens);
146         // Tests for STATUS.
147         
148         ASSERT_EQ("2.0;Success", TestEvent.RequestStatusData);
149         ASSERT_EQ("kw", TestEvent.RequestStatusLanguage);
150         ASSERT_EQ("FAVOURITE=RICHTEA;NOTLIKE=UNKNOWN", TestEvent.RequestStatusTokens);
152         // Tests for SUMMARY.
153         
154         ASSERT_EQ("A summary of the event.", TestEvent.SummaryData);
155         ASSERT_EQ("null:nodata", TestEvent.SummaryDataAltRep);
156         ASSERT_EQ("kw", TestEvent.SummaryDataLanguage);
157         ASSERT_EQ("FAVOURITE=TOFU;NOTLIKE=NONE", TestEvent.SummaryDataTokens);
159         // Tests for TRANSP.
160         
161         ASSERT_EQ("TRANSPARENT", TestEvent.TimeTransparencyData);
162         ASSERT_EQ("OPAQUE=NOTYET", TestEvent.TimeTransparencyDataTokens);
164         // Tests for URL.
166         ASSERT_EQ("http://www.example.com/", TestEvent.URLData);
167         ASSERT_EQ("EXTERNAL=YES", TestEvent.URLDataTokens);
168         
169         // Tests for RECURRENCE-ID.
170         
171         ASSERT_EQ("20160124", TestEvent.RecurranceIDData);
172         ASSERT_EQ("Europe/Truro", TestEvent.RecurranceIDDataTimeZoneParam);
173         ASSERT_EQ("THISANDFUTURE", TestEvent.RecurranceIDDataRangeParam);
174         ASSERT_EQ("DATE", TestEvent.RecurranceIDDataValue);
175         ASSERT_EQ("EXAMPLE=DATA", TestEvent.RecurranceIDDataTokens);
177         // Tests for RRULE.
178         
179         ASSERT_EQ("FREQ=DAILY;COUNT=10", TestEvent.RecurranceRuleData);
180         ASSERT_EQ("TEST=DATA", TestEvent.RecurranceRuleDataTokens);
182         // Tests for DTEND.
183         
184         ASSERT_EQ("20160124T183000Z", TestEvent.DateTimeEndData);
185         ASSERT_EQ("DATE-TIME", TestEvent.DateTimeEndDataValue);
186         ASSERT_EQ("Europe/Truro", TestEvent.DateTimeEndDataTimeZoneID);
187         ASSERT_EQ("PARAMFOUR=YES;PARAMTHREE=NO", TestEvent.DateTimeEndDataTokens);
188         
189         // Tests for DURATION. (Done in another file called 
190         // iCalendarEvent-Load3.vcf).
192         CalendarEventObject TestEvent2;
193         ASSERT_EQ(CALENDAROBJECTLOAD_OK, TestEvent2.LoadFile("iCalendarEvent-Load3.vcf"));
194         ASSERT_EQ(CALENDAROBJECTVALID_OK, TestEvent2.ValidBaseObject());
196         ASSERT_EQ("PT1H", TestEvent2.DurationData);
197         ASSERT_EQ("TEST=EXAMPLE", TestEvent2.DurationDataTokens);
198         
199         // Tests for ATTACH. First ATTACH property.
201         std::string AttachData;
202         std::string AttachDataFormatType;
203         std::string AttachDataValue;
204         std::string AttachDataEncoding;
205         std::string AttachDataTokens;
207         if (TestEvent.AttachList.begin() != TestEvent.AttachList.end()){
208                 
209                 AttachData = TestEvent.AttachList[0];
210                 
211         }
212         
213         if (TestEvent.AttachListFormatType.begin() != TestEvent.AttachListFormatType.end()){
214                 
215                 AttachDataFormatType = TestEvent.AttachListFormatType[0];
216                 
217         }
219         ASSERT_EQ("http://www.example.com/", AttachData);
220         ASSERT_EQ("application/internet-shortcut", AttachDataFormatType);
221         
222         // Second ATTACH property.
223         
224         AttachData.clear();
225         AttachDataFormatType.clear();
226         AttachDataValue.clear();
227         AttachDataEncoding.clear();
228         
229         if (TestEvent.AttachList.size() > 1){
230                 
231                 AttachData = TestEvent.AttachList[1];
232                 
233         }
234         
235         if (TestEvent.AttachListFormatType.size() > 1){
236                 
237                 AttachDataFormatType = TestEvent.AttachListFormatType[1];
238                 
239         }
241         ASSERT_EQ("http://www.example.com/page2.html", AttachData);
242         ASSERT_EQ("application/internet-shortcut", AttachDataFormatType);
243         
244         // Third ATTACH property.
246         AttachData.clear();
247         AttachDataFormatType.clear();
248         AttachDataValue.clear();
249         AttachDataEncoding.clear();
250         AttachDataTokens.clear();
251         
252         if (TestEvent.AttachList.size() > 2){
253                 
254                 AttachData = TestEvent.AttachList[2];
255                 
256         }
257         
258         if (TestEvent.AttachListFormatType.size() > 2){
259                 
260                 AttachDataFormatType = TestEvent.AttachListFormatType[2];
261                 
262         }
263         
264         if (TestEvent.AttachListValue.size() > 2){
265                 
266                 AttachDataValue = TestEvent.AttachListValue[2];
267                 
268         }
269         
270         if (TestEvent.AttachListFormatType.size() > 2){
271                 
272                 AttachDataEncoding = TestEvent.AttachListEncoding[2];
273                 
274         }
276         if (TestEvent.AttachListTokens.size() > 2){
277                 
278                 AttachDataTokens = TestEvent.AttachListTokens[2];
279                 
280         }
281         
282         ASSERT_EQ("VGhpcyBpcyBhbiBleGFtcGxlIGZpbGU=", AttachData);
283         ASSERT_EQ("text/plain", AttachDataFormatType);
284         ASSERT_EQ("BASE64", AttachDataEncoding);
285         ASSERT_EQ("BINARY", AttachDataValue);
286         ASSERT_EQ("STUPID=EXAMPLE", AttachDataTokens);
288         // Tests for ATTENDEE. First ATTENDEE property.
290         std::string AttendeeDataMember;
291         std::string AttendeeDataDelegatedFrom;
292         std::string AttendeeDataDelegatedTo;
293         std::string AttendeeDataRole;
294         std::string AttendeeDataRSVP;
295         std::string AttendeeDataDirectoryEntry;
296         std::string AttendeeDataSentBy;
297         std::string AttendeeDataCommonName;
298         std::string AttendeeDataCalendarUserType;
299         std::string AttendeeDataParticipationStatus;
300         std::string AttendeeDataLanguage;
301         std::string AttendeeDataTokens;
302         std::string AttendeeData;
304         if (TestEvent.AttendeeList.begin() != TestEvent.AttendeeList.end()){
305                 
306                 AttendeeData = TestEvent.AttendeeList[0];
307                 
308         }
309         
310         ASSERT_EQ("Attendee One", AttendeeData);
311         
312         // Second ATTENDEE property.
313         
314         AttendeeData.clear();
315         
316         if (TestEvent.AttendeeList.size() > 1){
317                 
318                 AttendeeData = TestEvent.AttendeeList[1];
319                 
320         }
322         if (TestEvent.AttendeeList.size() > 1){
323                 
324                 AttendeeDataDelegatedFrom = TestEvent.AttendeeListDelegatedFrom[1];
325                 
326         }
327         
328         if (TestEvent.AttendeeList.size() > 1){
329                 
330                 AttendeeDataDelegatedTo = TestEvent.AttendeeListDelegatedTo[1];
331                 
332         }
334         if (TestEvent.AttendeeList.size() > 1){
335                 
336                 AttendeeDataRole = TestEvent.AttendeeListRole[1];
337                 
338         }
339         
340         if (TestEvent.AttendeeList.size() > 1){
341                 
342                 AttendeeDataRSVP = TestEvent.AttendeeListRSVP[1];
343                 
344         }
345         
346         ASSERT_EQ("Attendee Two", AttendeeData);
347         ASSERT_EQ("mailto:delegated.from@example.com", AttendeeDataDelegatedFrom);
348         ASSERT_EQ("mailto:delegated.to@example.com", AttendeeDataDelegatedTo);
349         ASSERT_EQ("CHAIR", AttendeeDataRole);
350         ASSERT_EQ("TRUE", AttendeeDataRSVP);
352         // Third ATTENDEE property.
353         
354         AttendeeData.clear();
355         
356         if (TestEvent.AttendeeList.size() > 2){
357                 
358                 AttendeeData = TestEvent.AttendeeList[2];
359                 
360         }
362         if (TestEvent.AttendeeList.size() > 2){
363                 
364                 AttendeeDataDirectoryEntry = TestEvent.AttendeeListDirectoryEntry[2];
365                 
366         }
367         
368         if (TestEvent.AttendeeList.size() > 2){
369                 
370                 AttendeeDataSentBy = TestEvent.AttendeeListSentBy[2];
371                 
372         }
374         if (TestEvent.AttendeeList.size() > 2){
375                 
376                 AttendeeDataCommonName = TestEvent.AttendeeListCommonName[2];
377                 
378         }
379         
380         if (TestEvent.AttendeeList.size() > 2){
381                 
382                 AttendeeDataCalendarUserType = TestEvent.AttendeeListCalendarUserType[2];
383                 
384         }
386         if (TestEvent.AttendeeList.size() > 2){
387                 
388                 AttendeeDataParticipationStatus = TestEvent.AttendeeListParticipationStatus[2];
389                 
390         }
392         if (TestEvent.AttendeeList.size() > 2){
393                 
394                 AttendeeDataLanguage = TestEvent.AttendeeListLanguage[2];
395                 
396         }
397         
398         if (TestEvent.AttendeeList.size() > 2){
399                 
400                 AttendeeDataTokens = TestEvent.AttendeeListTokens[2];
401                 
402         }
403         
404         ASSERT_EQ("Attendee Three", AttendeeData);
405         ASSERT_EQ("null:nodata", AttendeeDataDirectoryEntry);
406         ASSERT_EQ("mailto:sent.by@example.com", AttendeeDataSentBy);
407         ASSERT_EQ("Attendee The Third", AttendeeDataCommonName);
408         ASSERT_EQ("INDIVIDUAL", AttendeeDataCalendarUserType);
409         ASSERT_EQ("ACCEPTED", AttendeeDataParticipationStatus);
410         ASSERT_EQ("kw", AttendeeDataLanguage);
411         ASSERT_EQ("EXAMPLE=DATA", AttendeeDataTokens);
412         
413         // Get the first CATEGORIES.
414         
415         std::string CategoryData;
416         
417         if (TestEvent.CategoriesList.begin() != TestEvent.CategoriesList.end()){
418                 
419                 CategoryData = TestEvent.CategoriesList[0];
420                 
421         }
422         
423         ASSERT_EQ("CATEGORY ONE, CATEGORY TWO", CategoryData);
424         
425         CategoryData.clear();
427         std::string CategoryLanguage;
428         
429         // Get the second CATEGORIES.
430         
431         if (TestEvent.CategoriesList.size() > 1){
432                 
433                 CategoryData = TestEvent.CategoriesList[1];
434                 
435         }
436         
437         if (TestEvent.CategoriesList.size() > 1){
438                 
439                 CategoryLanguage = TestEvent.CategoriesListLanguage[1];
440                 
441         }
442                 
443         ASSERT_EQ("CATEGORY THREE, CATEGORY FOUR", CategoryData);
444         ASSERT_EQ("en", CategoryLanguage);
445         
446         CategoryData.clear();
447         CategoryLanguage.clear();
448         
449         // Get the third CATEGORIES.
450         
451         std::string CategoryTokens;
452         
453         if (TestEvent.CategoriesList.size() > 2){
454                 
455                 CategoryData = TestEvent.CategoriesList[2];
456                 
457         }
458         
459         if (TestEvent.CategoriesList.size() > 2){
460                 
461                 CategoryLanguage = TestEvent.CategoriesListLanguage[2];
462                 
463         }
464         
465         if (TestEvent.CategoriesList.size() > 2){
466                 
467                 CategoryTokens = TestEvent.CategoriesListTokens[2];
468                 
469         }
470                 
471         ASSERT_EQ("CATEGORY FIVE, CATEGORY SIX, CATEGORY SEVEN", CategoryData);
472         ASSERT_EQ("en-GB", CategoryLanguage);
473         ASSERT_EQ("SAMPLE=TOKEN", CategoryTokens);
474         
475         // Get the first COMMENT.
476         
477         std::string CommentData;
478         
479         if (TestEvent.CommentList.begin() != TestEvent.CommentList.end()){
480                 
481                 CommentData = TestEvent.CommentList[0];
482                 
483         }
484         
485         ASSERT_EQ("This is the first comment.", CommentData);
486         
487         // Get the second COMMENT.
488         
489         CommentData.clear();
490         
491         std::string CommentDataAltRep;
492         std::string CommentDataLanguage;
493         
494         if (TestEvent.CommentList.size() > 1){
495                 
496                 CommentData = TestEvent.CommentList[1];
497                 
498         }
499         
500         if (TestEvent.CommentList.size() > 1){
501                 
502                 CommentDataAltRep = TestEvent.CommentListAltRep[1];
503                 
504         }
505         
506         if (TestEvent.CommentList.size() > 1){
507                 
508                 CommentDataLanguage = TestEvent.CommentListLanguage[1];
509                 
510         }
511         
512         ASSERT_EQ("This is the second comment.", CommentData);
513         ASSERT_EQ("null:nodata", CommentDataAltRep);
514         ASSERT_EQ("en", CommentDataLanguage);
515         
516         // Get the third COMMENT.
517         
518         CommentData.clear();
519         
520         std::string CommentDataTokens;
521         
522         if (TestEvent.CommentList.size() > 2){
523                 
524                 CommentData = TestEvent.CommentList[2];
525                 
526         }
527         
528         if (TestEvent.CommentList.size() > 2){
529                 
530                 CommentDataTokens = TestEvent.CommentListTokens[2];
531                 
532         }
533         
534         ASSERT_EQ("This is the third comment.", CommentData);
535         ASSERT_EQ("ZEBRAS=YES", CommentDataTokens);
536         
537         // Get the first CONTACT.
538         
539         std::string ContactData;
540         
541         if (TestEvent.ContactList.begin() != TestEvent.ContactList.end()){
542                 
543                 ContactData = TestEvent.ContactList[0];
544                 
545         }
546         
547         ASSERT_EQ("First Contact", ContactData);
548         
549         // Get the second CONTACT.
550         
551         ContactData.clear();
552         
553         std::string ContactDataAltRep;
554         std::string ContactDataLanguage;
555         
556         if (TestEvent.ContactList.size() > 1){
557                 
558                 ContactData = TestEvent.ContactList[1];
559                 
560         }
561         
562         if (TestEvent.ContactList.size() > 1){
563                 
564                 ContactDataAltRep = TestEvent.ContactListAltRep[1];
565                 
566         }
567         
568         if (TestEvent.ContactList.size() > 1){
569                 
570                 ContactDataLanguage = TestEvent.ContactListLanguage[1];
571                 
572         }
573         
574         ASSERT_EQ("Second Contact", ContactData);
575         ASSERT_EQ("null:nodata", ContactDataAltRep);
576         ASSERT_EQ("en-GB", ContactDataLanguage);
577         
578         // Get the third CONTACT.
579         
580         ContactData.clear();
581         
582         std::string ContactDataTokens;
583         
584         if (TestEvent.ContactList.size() > 2){
585                 
586                 ContactData = TestEvent.ContactList[2];
587                 
588         }
589         
590         if (TestEvent.ContactList.size() > 2){
591                 
592                 ContactDataTokens = TestEvent.ContactListTokens[2];
593                 
594         }
595         
596         ASSERT_EQ("Third Contact", ContactData);
597         ASSERT_EQ("ZEBRAS=NO", ContactDataTokens);
598         
599         // Get the first EXDATE.
600         
601         std::string ExcludeDate;
602         
603         if (TestEvent.ExcludeDateData.begin() != TestEvent.ExcludeDateData.end()){
604                 
605                 ExcludeDate = TestEvent.ExcludeDateData[0];
606                 
607         }
608         
609         ASSERT_EQ("20160125T120000Z", ExcludeDate);
610         
611         // Get the second EXDATE.
613         ExcludeDate.clear();
614         
615         std::string ExcludeDataTimeZoneParam;
616         std::string ExcludeDataValue;
617         
618         if (TestEvent.ContactList.size() > 1){
619                 
620                 ExcludeDate = TestEvent.ExcludeDateData[1];
621                 
622         }
623         
624         if (TestEvent.ContactList.size() > 1){
625                 
626                 ExcludeDataTimeZoneParam = TestEvent.ExcludeDateDataTimeZoneParam[1];
627                 
628         }
629         
630         if (TestEvent.ContactList.size() > 1){
631                 
632                 ExcludeDataValue = TestEvent.ExcludeDateDataValue[1];
633                 
634         }
635         
636         ASSERT_EQ("20160125T130000Z", ExcludeDate);
637         ASSERT_EQ("DATE-TIME", ExcludeDataValue);
638         ASSERT_EQ("Europe/Truro", ExcludeDataTimeZoneParam);
639         
640         // Get the third EXDATE.
641         
642         ExcludeDate.clear();
643         
644         std::string ExcludeDataTokens;
645         
646         if (TestEvent.ContactList.size() > 2){
647                 
648                 ExcludeDate = TestEvent.ExcludeDateData[2];
649                 
650         }
651         
652         if (TestEvent.ContactList.size() > 2){
653                 
654                 ExcludeDataTokens = TestEvent.ExcludeDateDataTokens[2];
655                 
656         }
657         
658         ASSERT_EQ("20160125T133000Z", ExcludeDate);
659         ASSERT_EQ("ZOOP=ZIPPO", ExcludeDataTokens);
660         
Xestia Software Development
Yn Maystri
© 2006 - 2019 Xestia Software Development
Software

Xestia Address Book
Xestia Calendar
Development

Xestia Gelforn
Everything else

About
News
Privacy Policy