ASSERT_EQ(TextExample1TestResult, ProcessTextVectors(&TextPropertiesExample1, &TextValueExample1, false, "RELATED"));
+}
+
+TEST(CommonFunctions, SplitValuesTests){
+
+ map<string, string> TextExample1TestResult;
+
+ TextExample1TestResult.insert(make_pair("RELATION", "NO"));
+ TextExample1TestResult.insert(make_pair("TEST", "YES"));
+ TextExample1TestResult.insert(make_pair("DATA", "SOMEDATA"));
+
+ ASSERT_EQ(TextExample1TestResult, SplitValues("TEST;RELATION=NO;TEST=YES;DATA=SOMEDATA"));
+
+}
+
+TEST(CommonFunctions, SplitNameValueTests){
+
+ PropertyNameValue NameValueResult;
+
+ NameValueResult = SplitNameValue("TEST=OK");
+
+ string PropertyName = NameValueResult.Name;
+ string PropertyValue = NameValueResult.Value;
+
+ ASSERT_EQ(PropertyName, "TEST");
+ ASSERT_EQ(PropertyValue, "OK");
+
}
\ No newline at end of file