Version 7.6.3.2-android, tag libreoffice-7.6.3.2-android
[LibreOffice.git] / oox / qa / token / tokenmap-test.cxx
blob058f7c16ebbfc8deb136e7507e5c2a0c51015bf5
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 */
10 #include <cppunit/TestAssert.h>
11 #include <cppunit/TestFixture.h>
12 #include <cppunit/extensions/HelperMacros.h>
13 #include <cppunit/plugin/TestPlugIn.h>
15 #include <oox/token/tokenmap.hxx>
16 #include <oox/token/tokens.hxx>
18 using namespace com::sun::star::uno;
20 namespace oox {
22 class TokenmapTest: public CppUnit::TestFixture
24 public:
25 void test_roundTrip();
27 CPPUNIT_TEST_SUITE(TokenmapTest);
29 CPPUNIT_TEST(test_roundTrip);
30 CPPUNIT_TEST_SUITE_END();
32 private:
33 TokenMap tokenMap;
36 void TokenmapTest::test_roundTrip()
38 for ( sal_Int32 nToken = 0; nToken < XML_TOKEN_COUNT; ++nToken )
40 // check that the getIdentifier <-> getToken roundtrip works
41 Sequence< sal_Int8 > rUtf8Name = tokenMap.getUtf8TokenName(nToken);
42 sal_Int32 ret = tokenMap.getTokenFromUTF8(
43 reinterpret_cast< const char * >(rUtf8Name.getConstArray()),
44 rUtf8Name.getLength() );
45 CPPUNIT_ASSERT_EQUAL(ret, nToken);
49 CPPUNIT_TEST_SUITE_REGISTRATION(TokenmapTest);
53 CPPUNIT_PLUGIN_IMPLEMENT();