summaryrefslogtreecommitdiff
path: root/tools/qa/cppunit
diff options
context:
space:
mode:
authorChris Sherlock <chris.sherlock79@gmail.com>2022-06-19 20:38:44 +1000
committerStephan Bergmann <sbergman@redhat.com>2022-08-09 15:28:30 +0200
commit57fddf3e644c99715fb3bdf2e107aa2495c0ecf9 (patch)
tree385b82bfa30e9a17ad57ed956687f3ce6328f1ff /tools/qa/cppunit
parenta9a6ec313be4787f99cece793f069f61a8ee73b2 (diff)
tools: json writer test does not need to use test::BootstrapFixture
Change-Id: Iea7fa63ca7a3208d065ac2960998041672fc8d7c Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136231 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'tools/qa/cppunit')
-rw-r--r--tools/qa/cppunit/test_json_writer.cxx12
1 files changed, 3 insertions, 9 deletions
diff --git a/tools/qa/cppunit/test_json_writer.cxx b/tools/qa/cppunit/test_json_writer.cxx
index 188b22f9c617..2e0706605745 100644
--- a/tools/qa/cppunit/test_json_writer.cxx
+++ b/tools/qa/cppunit/test_json_writer.cxx
@@ -9,24 +9,18 @@
#include <sal/config.h>
+#include <cppunit/TestFixture.h>
#include <cppunit/extensions/HelperMacros.h>
+
#include <o3tl/deleter.hxx>
-#include <test/bootstrapfixture.hxx>
#include <rtl/ustring.hxx>
#include <tools/json_writer.hxx>
namespace
{
-class JsonWriterTest : public test::BootstrapFixture
+class JsonWriterTest : public CppUnit::TestFixture
{
public:
- JsonWriterTest()
- : BootstrapFixture(true, false)
- {
- }
-
- virtual void setUp() override {}
-
void test1();
void test2();
void testArray();