]> git.saurik.com Git - wxWidgets.git/blobdiff - tests/benchmarks/strings.cpp
Add a test of precisely sized status bar fields.
[wxWidgets.git] / tests / benchmarks / strings.cpp
index 9449f49110065268b08dda3264e22f8026143cbe..cc09a35418c2d4882c65d4e888f7e7f928060495 100644 (file)
@@ -281,6 +281,18 @@ BENCHMARK_FUNC(ReplaceAll)
     return str.Replace("x", "y") != 0;
 }
 
     return str.Replace("x", "y") != 0;
 }
 
+BENCHMARK_FUNC(ReplaceLonger)
+{
+    wxString str('x', ASCIISTR_LEN);
+    return str.Replace("x", "yy") != 0;
+}
+
+BENCHMARK_FUNC(ReplaceShorter)
+{
+    wxString str('x', ASCIISTR_LEN);
+    return str.Replace("xx", "y") != 0;
+}
+
 
 // ----------------------------------------------------------------------------
 // string buffers: wx[W]CharBuffer
 
 // ----------------------------------------------------------------------------
 // string buffers: wx[W]CharBuffer