diff options
author | Xisco Fauli <xiscofauli@libreoffice.org> | 2022-11-03 11:42:17 +0100 |
---|---|---|
committer | Xisco Fauli <xiscofauli@libreoffice.org> | 2022-11-03 16:21:57 +0100 |
commit | 2dd592f0836184e3f275e8ff3248639f08a3f647 (patch) | |
tree | 21e8e2f3a98b7d82a19f45f8d4e28eb37a992634 /include/test | |
parent | 1de8308d40fad8e9281d2b491f8c5c919fda82f4 (diff) |
UnoApiXmlTest: add new wrapper for XmlTestTools tests
Change-Id: I767f464ec666330a2e8e832b6d6f5736a6bef54d
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/142228
Tested-by: Jenkins
Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
Diffstat (limited to 'include/test')
-rw-r--r-- | include/test/unoapixml_test.hxx | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/include/test/unoapixml_test.hxx b/include/test/unoapixml_test.hxx new file mode 100644 index 000000000000..36fb334a75cd --- /dev/null +++ b/include/test/unoapixml_test.hxx @@ -0,0 +1,30 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +/* + * 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/. + */ + +#ifndef INCLUDED_TEST_UNOAPIXML_TEST_HXX +#define INCLUDED_TEST_UNOAPIXML_TEST_HXX + +#include <sal/config.h> + +#include <test/unoapi_test.hxx> +#include <test/xmltesttools.hxx> + +// basic uno api xml test class + +class OOO_DLLPUBLIC_TEST UnoApiXmlTest : public UnoApiTest, public XmlTestTools +{ +public: + UnoApiXmlTest(OUString path); + + xmlDocUniquePtr parseExport(OUString const& rTempFile, OUString const& rStreamName); +}; + +#endif // INCLUDED_TEST_UNOAPIXML_TEST_HXX + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |