summaryrefslogtreecommitdiff
path: root/test/source/document
diff options
context:
space:
mode:
authorJens Carl <j.carl43@gmx.de>2019-01-24 08:17:56 +0000
committerJens Carl <j.carl43@gmx.de>2019-01-24 18:42:23 +0100
commit9a2954f566b88c06c9e3aa34e1fa7e23200182ee (patch)
tree6c8b49612ab34328b5b05150d0567d61a1fb2acf /test/source/document
parent03c62c4db748ea214fd7bcef07052d90acc865ea (diff)
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 <j.carl43@gmx.de>
Diffstat (limited to 'test/source/document')
-rw-r--r--test/source/document/xembeddedobjectsupplier.cxx30
1 files changed, 30 insertions, 0 deletions
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 <test/document/xembeddedobjectsupplier.hxx>
+
+#include <com/sun/star/document/XEmbeddedObjectSupplier.hpp>
+
+#include <com/sun/star/uno/Reference.hxx>
+
+#include <cppunit/extensions/HelperMacros.h>
+
+using namespace css;
+
+namespace apitest
+{
+void XEmbeddedObjectSupplier::testGetEmbeddedObject()
+{
+ uno::Reference<document::XEmbeddedObjectSupplier> 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: */