Home | News | Projects | Releases
Bugs | RFE | Repositories | Help
Updated code for testing EscapeString in CommonFunctions/EscapeString
authorSteve Brokenshire <sbrokenshire@xestia.co.uk>
Tue, 22 Mar 2016 22:39:36 +0000 (22:39 +0000)
committerSteve Brokenshire <sbrokenshire@xestia.co.uk>
Tue, 22 Mar 2016 22:39:36 +0000 (22:39 +0000)
source/tests/xestiaab_common.h

index 203278f..6dbfb9f 100644 (file)
@@ -249,30 +249,25 @@ TEST(CommonFunctions, EscapeString){
 
        // Test the escape string function.
 
-       EscapeStringData = "\"Example\"";
-
-       ASSERT_EQ("\\\"Example\\\"", EscapeStringData(&EscapeStringData, false));
+       wxString EscapeStringData = "Example";
+       EscapeString(&EscapeStringData, false);
+       ASSERT_EQ("Example", EscapeStringData.ToStdString());
 
        EscapeStringData = "Here we go, an \"example\" of escaping string.";
-
-       ASSERT_EQ("Here we go\\, an \\\"example\\\" of escaping string.", EscapeStringData(&EscapeStringData, false));
+       EscapeString(&EscapeStringData, false);
+       ASSERT_EQ("Here we go\\, an \"example\" of escaping string.", EscapeStringData.ToStdString());
 
        EscapeStringData = "Lets put some \nnew \nlines \nin \nhere.";
-
-       ASSERT_EQ("Lets put some \\nnew \\nlines \\nin \\nhere.", EscapeStringData(&EscapeStringData, false));
+       EscapeString(&EscapeStringData, false);
+       ASSERT_EQ("Lets put some \\nnew \\nlines \\nin \\nhere.", EscapeStringData.ToStdString());
 
        EscapeStringData = "Lets put some \r\nnew \r\nlines \r\nin \r\nhere.";
+       EscapeString(&EscapeStringData, false);
+       ASSERT_EQ("Lets put some \\nnew \\nlines \\nin \\nhere.", EscapeStringData.ToStdString());
 
-       ASSERT_EQ("Lets put some \\nnew \\nlines \\nin \\nhere.", EscapeStringData(&EscapeStringData, false));
-
-       EscapeStringData = "A:\path\example\lets\have\some\fun";
-
-       ASSERT_EQ("A:\\path\\example\\lets\\have\\some\\fun", EscapeStringData(&EscapeStringData, false));
-
-
-}
-
-TEST(CommonFunctions, GetEscapeString){
+       EscapeStringData = "A:\\path\\example\\lets\\have\\some\\fun";
+       EscapeString(&EscapeStringData, false);
+       ASSERT_EQ("A:\\\\path\\\\example\\\\lets\\\\have\\\\some\\\\fun", EscapeStringData.ToStdString());
 
 }
 
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