Kaydet (Commit) 71636d56 authored tarafından Jens Carl's avatar Jens Carl

Enable XElementAccess test cases

The class XElementAccess was missing the macro OOO_DLLPUBLIC_TEST,
and so it wasn't possible to use these test cases.

Change-Id: I358bb840c6088ea25b60ee57b8c69f31ab71ddbb
Reviewed-on: https://gerrit.libreoffice.org/64363
Tested-by: Jenkins
Reviewed-by: 's avatarJens Carl <j.carl43@gmx.de>
üst ee8cba85
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */
/*
* This file is part of the LibreOffice project.
*
......@@ -10,29 +10,37 @@
#ifndef INCLUDED_TEST_CONTAINER_XELEMENTACCESS_HXX
#define INCLUDED_TEST_CONTAINER_XELEMENTACCESS_HXX
#include <com/sun/star/uno/Type.hxx>
#include <com/sun/star/uno/XInterface.hpp>
#include <com/sun/star/uno/Reference.hxx>
#include <com/sun/star/uno/Type.hxx>
namespace apitest {
#include <test/testdllapi.hxx>
class XElementAccess
namespace apitest
{
class OOO_DLLPUBLIC_TEST XElementAccess
{
public:
XElementAccess(css::uno::Type const & rType): maType(rType) {}
XElementAccess(css::uno::Type const& rType)
: m_aType(rType)
{
}
void testGetElementType();
void testHasElements();
virtual css::uno::Reference< css::uno::XInterface > init() = 0;
virtual css::uno::Reference<css::uno::XInterface> init() = 0;
virtual ~XElementAccess() {}
protected:
~XElementAccess() {}
private:
css::uno::Type const maType;
css::uno::Type const m_aType;
};
}
} // namespace apitest
#endif // INCLUDED_TEST_CONTAINER_XELEMENTACCESS_HXX
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
/* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */
......@@ -7576,7 +7576,6 @@ include/test/beans/xpropertyset.hxx
include/test/bootstrapfixture.hxx
include/test/calc_unoapi_test.hxx
include/test/callgrind.hxx
include/test/container/xelementaccess.hxx
include/test/container/xindexaccess.hxx
include/test/container/xnamecontainer.hxx
include/test/container/xnamed.hxx
......@@ -16569,7 +16568,6 @@ test/source/beans/xpropertyset.cxx
test/source/bootstrapfixture.cxx
test/source/calc_unoapi_test.cxx
test/source/callgrind.cxx
test/source/container/xelementaccess.cxx
test/source/container/xindexaccess.cxx
test/source/container/xnamecontainer.cxx
test/source/container/xnamed.cxx
......
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */
/*
* This file is part of the LibreOffice project.
*
......@@ -8,26 +8,29 @@
*/
#include <test/container/xelementaccess.hxx>
#include <com/sun/star/container/XElementAccess.hpp>
#include <com/sun/star/uno/Reference.hxx>
#include <cppunit/extensions/HelperMacros.h>
using namespace css;
using namespace css::uno;
namespace apitest {
namespace apitest
{
void XElementAccess::testGetElementType()
{
uno::Reference< container::XElementAccess > xElementAccess(init(), UNO_QUERY_THROW);
CPPUNIT_ASSERT_EQUAL(maType, xElementAccess->getElementType());
uno::Reference<container::XElementAccess> xElementAccess(init(), UNO_QUERY_THROW);
CPPUNIT_ASSERT_EQUAL(m_aType, xElementAccess->getElementType());
}
void XElementAccess::testHasElements()
{
uno::Reference< container::XElementAccess > xElementAccess(init(), UNO_QUERY_THROW);
uno::Reference<container::XElementAccess> xElementAccess(init(), UNO_QUERY_THROW);
CPPUNIT_ASSERT(xElementAccess->hasElements());
}
}
} // namespace apitest
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
/* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment