Home | News | Projects | Releases
Bugs | RFE | Repositories | Help
Added ProcessTextVectorsTests unit tests in CommonFunctions
authorSteve Brokenshire <sbrokenshire@xestia.co.uk>
Sat, 23 Jan 2016 11:05:32 +0000 (11:05 +0000)
committerSteve Brokenshire <sbrokenshire@xestia.co.uk>
Sat, 23 Jan 2016 11:05:32 +0000 (11:05 +0000)
source/tests/xestiacalendar_commonfunctions.h

index 74f0125..62a8aee 100644 (file)
@@ -1,8 +1,35 @@
 #include "../common/file.h"
+#include "../common/text.h"
 
 TEST(CommonFunctions, FileTests){
        
        ASSERT_EQ(false, FileExists("iCalendarEvent-Missing.vcf"));
        ASSERT_EQ(true, FileExists("iCalendarEvent-InvalidPermissions.vcf"));
        
+}
+
+TEST(CommonFunctions, ProcessTextVectorsTests){
+       
+       // Setup the objects to be used for processing.
+       
+       vector<string> TextPropertiesExample1;
+       vector<string> TextValueExample1;
+       //multimap<string, string> TextExample1Results;
+       multimap<string, string> TextExample1TestResult1;
+       
+       TextPropertiesExample1.push_back("ATTENDEE");
+       TextValueExample1.push_back("Example Attendee 1");
+
+       TextPropertiesExample1.push_back("ATTENDEE");
+       TextValueExample1.push_back("Example Attendee 2");
+       
+       TextPropertiesExample1.push_back("ATTENDEE");
+       TextValueExample1.push_back("Example Attendee 3");
+
+       TextExample1TestResult1.insert(make_pair("ATTENDEE", "Example Attendee 1"));
+       TextExample1TestResult1.insert(make_pair("ATTENDEE", "Example Attendee 2"));
+       TextExample1TestResult1.insert(make_pair("ATTENDEE", "Example Attendee 3"));
+       
+       ASSERT_EQ(TextExample1TestResult1, ProcessTextVectors(&TextPropertiesExample1, &TextValueExample1, true, "ATTENDEE"));
+
 }
\ No newline at end of file
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