diff options
author | Justin Luth <justin.luth@collabora.com> | 2023-12-19 09:16:00 -0500 |
---|---|---|
committer | Justin Luth <jluth@mail.com> | 2023-12-21 23:41:00 +0100 |
commit | a7bd33955fa52380cf9b04da265646bc93d5c217 (patch) | |
tree | 5bc24a523cd0c52ffd000b57973a2d7dc09cf016 /sw/qa/extras/pdf/HybridPdfTest.cxx | |
parent | a2cd681369061574974517b1aabf78613f5601b7 (diff) |
address nit: put unit tests in anonymouse namespace
https://gerrit.libreoffice.org/c/core/+/160655/5/sw/qa/extras/rtfexport/rtfexport8.cxx
Miklos "nitted" me that I didn't wrap this test
in an anonymous namespace. Obviously anything I do
is simply copy/paste, so lets make sure that at
least the latest and greatest versions of each
series of unit tests are done "correctly".
Change-Id: I699c8d70e4f587373918e27f08304a0fe815bff4
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/160991
Reviewed-by: Justin Luth <jluth@mail.com>
Tested-by: Jenkins
Diffstat (limited to 'sw/qa/extras/pdf/HybridPdfTest.cxx')
-rw-r--r-- | sw/qa/extras/pdf/HybridPdfTest.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sw/qa/extras/pdf/HybridPdfTest.cxx b/sw/qa/extras/pdf/HybridPdfTest.cxx index fda2b409fbaa..ded679324ae5 100644 --- a/sw/qa/extras/pdf/HybridPdfTest.cxx +++ b/sw/qa/extras/pdf/HybridPdfTest.cxx @@ -11,6 +11,8 @@ #include <docsh.hxx> #include <unotxdoc.hxx> +namespace +{ class HybridPdfTest : public SwModelTestBase { public: @@ -69,6 +71,7 @@ void HybridPdfTest::testHybridWithAdditionalStreamsAndAttachedFile() getParagraph(1)->getString()); } +} // end of anonymous namespace CPPUNIT_TEST_SUITE_REGISTRATION(HybridPdfTest); CPPUNIT_PLUGIN_IMPLEMENT(); |