From 9a2954f566b88c06c9e3aa34e1fa7e23200182ee Mon Sep 17 00:00:00 2001 From: Jens Carl Date: Thu, 24 Jan 2019 08:17:56 +0000 Subject: tdf#45904 Move XEmbeddedObjectSupplier Java test to C++ Move XEmbeddedObjectSupplier Java test to C++ for ScChartObj. Change-Id: I125951e490719de225f1ac48d10b857c457fa529 Reviewed-on: https://gerrit.libreoffice.org/66839 Tested-by: Jenkins Reviewed-by: Jens Carl --- test/Library_subsequenttest.mk | 1 + test/source/document/xembeddedobjectsupplier.cxx | 30 ++++++++++++++++++++++++ 2 files changed, 31 insertions(+) create mode 100644 test/source/document/xembeddedobjectsupplier.cxx (limited to 'test') diff --git a/test/Library_subsequenttest.mk b/test/Library_subsequenttest.mk index 80e8f0be7952..14faf49f6e57 100644 --- a/test/Library_subsequenttest.mk +++ b/test/Library_subsequenttest.mk @@ -51,6 +51,7 @@ $(eval $(call gb_Library_add_exception_objects,subsequenttest,\ test/source/container/xnamecontainer \ test/source/container/xnamed \ test/source/container/xnamereplace \ + test/source/document/xembeddedobjectsupplier \ test/source/document/xlinktargetsupplier \ test/source/drawing/captionshape \ test/source/drawing/xdrawpages \ diff --git a/test/source/document/xembeddedobjectsupplier.cxx b/test/source/document/xembeddedobjectsupplier.cxx new file mode 100644 index 000000000000..8a0ce9b32d55 --- /dev/null +++ b/test/source/document/xembeddedobjectsupplier.cxx @@ -0,0 +1,30 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */ +/* + * 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 + +#include + +#include + +#include + +using namespace css; + +namespace apitest +{ +void XEmbeddedObjectSupplier::testGetEmbeddedObject() +{ + uno::Reference xEOS(init(), uno::UNO_QUERY_THROW); + + CPPUNIT_ASSERT(xEOS->getEmbeddedObject()); +} +} // namespace apitest + +/* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */ -- cgit