diff options
author | Xisco Fauli <xiscofauli@libreoffice.org> | 2022-11-03 13:55:06 +0100 |
---|---|---|
committer | Xisco Fauli <xiscofauli@libreoffice.org> | 2022-11-03 17:33:42 +0100 |
commit | 6f77eda1f4de7f2835a32dd597442a29fe59291c (patch) | |
tree | 61f440eccf04d5575c774681bba0994a1ae49a05 /include/test | |
parent | 1cfa0f49922aa49597bac341393c8f38309a3bae (diff) |
CppunitTest_sc_html_export_test: inherit from UnoApiXmlTest
Change-Id: Iee06f883704484bf62bf1d9988580d72ba40db22
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/142232
Tested-by: Jenkins
Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
Diffstat (limited to 'include/test')
-rw-r--r-- | include/test/unoapi_test.hxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/test/unoapi_test.hxx b/include/test/unoapi_test.hxx index d5b8d2145d99..8c27437d237d 100644 --- a/include/test/unoapi_test.hxx +++ b/include/test/unoapi_test.hxx @@ -40,6 +40,8 @@ public: utl::TempFileNamed saveAndClose(const OUString& rFilter); utl::TempFileNamed saveAndReload(const OUString& rFilter); + void setFilterOptions(const OUString& rFilterOptions) { maFilterOptions = rFilterOptions; } + protected: // reference to document component that we are testing css::uno::Reference<css::lang::XComponent> mxComponent; @@ -48,6 +50,8 @@ protected: private: OUString m_aBaseString; + + OUString maFilterOptions; }; #endif // INCLUDED_TEST_UNOAPI_TEST_HXX |