1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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/.
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"
19 using namespace com::sun::star::uno
;
23 class TokenmapTest
: public CppUnit::TestFixture
26 void test_roundTrip();
28 CPPUNIT_TEST_SUITE(TokenmapTest
);
30 CPPUNIT_TEST(test_roundTrip
);
31 CPPUNIT_TEST_SUITE_END();
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();