Version 5.4.3.2, tag libreoffice-5.4.3.2
[LibreOffice.git] / oox / qa / token / tokenmap-test.cxx
blob1ebbb01474c74b430600d10d790b9381b014a954
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 std;
19 using namespace com::sun::star::uno;
21 namespace oox {
23 class TokenmapTest: public CppUnit::TestFixture
25 public:
26 void test_roundTrip();
28 CPPUNIT_TEST_SUITE(TokenmapTest);
30 CPPUNIT_TEST(test_roundTrip);
31 CPPUNIT_TEST_SUITE_END();
33 private:
34 TokenMap tokenMap;
37 void TokenmapTest::test_roundTrip()
39 for ( sal_Int32 nToken = 0; nToken < XML_TOKEN_COUNT; ++nToken )
41 // check that the getIdentifier <-> getToken roundtrip works
42 Sequence< sal_Int8 > rUtf8Name = tokenMap.getUtf8TokenName(nToken);
43 sal_Int32 ret = tokenMap.getTokenFromUTF8(
44 reinterpret_cast< const char * >(rUtf8Name.getConstArray()),
45 rUtf8Name.getLength() );
46 CPPUNIT_ASSERT_EQUAL(ret, nToken);
50 CPPUNIT_TEST_SUITE_REGISTRATION(TokenmapTest);
54 CPPUNIT_PLUGIN_IMPLEMENT();