summaryrefslogtreecommitdiff
path: root/unotools/qa
diff options
context:
space:
mode:
authorMichael Jaumann <meta_dev@yahoo.com>2014-09-02 06:49:48 +0000
committerMichael Meeks <michael.meeks@collabora.com>2014-09-08 14:27:19 +0100
commit8e1a7034ff35ee825f3f8f22e14d93189149a1aa (patch)
tree6de827ee3abd1e413f0471c412a422d31f1f97a5 /unotools/qa
parent253b97cc353731dfec6fa6dc9923f34a946b0d21 (diff)
fdo#82854 - use OUStringBuffer in fontdefs.cxx plus unit-test.
Change-Id: Ia3a4814467ed98bd3b1889991cc3644c0c23f515
Diffstat (limited to 'unotools/qa')
-rw-r--r--unotools/qa/unit/testGetEnlishSearchName.cxx70
1 files changed, 70 insertions, 0 deletions
diff --git a/unotools/qa/unit/testGetEnlishSearchName.cxx b/unotools/qa/unit/testGetEnlishSearchName.cxx
new file mode 100644
index 000000000000..38b10eafb516
--- /dev/null
+++ b/unotools/qa/unit/testGetEnlishSearchName.cxx
@@ -0,0 +1,70 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+/*
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ *
+ */
+
+#include "cppunit/TestCase.h"
+#include "cppunit/TestFixture.h"
+#include "cppunit/TestSuite.h"
+#include "cppunit/extensions/HelperMacros.h"
+#include "cppunit/plugin/TestPlugIn.h"
+#include <unotools/fontdefs.hxx>
+
+
+class Test: public CppUnit::TestFixture
+{
+
+public:
+ virtual void setUp() SAL_OVERRIDE;
+ void testSingleElement();
+
+ CPPUNIT_TEST_SUITE(Test);
+ CPPUNIT_TEST(testSingleElement);
+
+ CPPUNIT_TEST_SUITE_END();
+};
+
+void Test::setUp()
+{};
+
+void Test::testSingleElement()
+{
+ { //lowercase
+ printf("GetEnglishSearchFontName( \"SYMBOL\" )");
+ OUString test1 = GetEnglishSearchFontName( "SYMBOL" );
+ CPPUNIT_ASSERT_EQUAL(test1, OUString("symbol"));
+ printf("return %s",test1.getStr());
+ //trailingWhitespaces
+ printf("GetEnglishSearchFontName( \"SYMBOL \" )");
+ test1 = GetEnglishSearchFontName( "Symbol " );
+ CPPUNIT_ASSERT_EQUAL(test1, OUString("symbol"));
+ printf("return %s",test1.getStr());
+ //removing Skripts
+ printf("GetEnglishSearchFontName( \"SYMBOL(skript)\" )");
+ test1 = GetEnglishSearchFontName( "Symbol(skript)" );
+ CPPUNIT_ASSERT_EQUAL(test1, OUString("symbol"));
+ printf("return %s",test1.getStr());
+ //remove Whitespaces between
+ printf("GetEnglishSearchFontName( \"SYMBOL (skript)\" )");
+ test1 = GetEnglishSearchFontName( "Symbol (skript)" );
+ CPPUNIT_ASSERT_EQUAL(test1, OUString("symbol"));
+ printf("return %s",test1.getStr());
+ //trailingWhitespaces
+
+ }
+
+
+}
+
+
+
+
+CPPUNIT_TEST_SUITE_REGISTRATION(Test);
+CPPUNIT_PLUGIN_IMPLEMENT();
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */