diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-10-12 15:19:21 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-10-15 12:18:44 +0100 |
commit | db5a5ffa82f835c81cf9a411d24f4cb0b1bb8fa5 (patch) | |
tree | 0e320d48ea2ce24a87f33095d2959919333c0b5c /svtools/qa/cppunit | |
parent | 528a225ddb1d429eeb048626d5e9e045118bad2e (diff) |
split bootstrapfixture and move test-filters class for sot test
sot is below vcl, but is a filters test, we can split bootstrapfixture
into a vcl needing bit and and non-vcl bit and filters test api
can be standalone and combined with whichever bit in order to form
pre and post vcl filters test
Diffstat (limited to 'svtools/qa/cppunit')
-rw-r--r-- | svtools/qa/cppunit/filters-test.cxx | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/svtools/qa/cppunit/filters-test.cxx b/svtools/qa/cppunit/filters-test.cxx index a216bc629a3a..a1c4a44947fd 100644 --- a/svtools/qa/cppunit/filters-test.cxx +++ b/svtools/qa/cppunit/filters-test.cxx @@ -27,7 +27,8 @@ * instead of those above. */ -#include <test/filters-test.hxx> +#include <unotest/filters-test.hxx> +#include <test/bootstrapfixture.hxx> #include <osl/file.hxx> #include <osl/process.h> @@ -38,10 +39,12 @@ using namespace ::com::sun::star; /* Implementation of Filters test */ -class SvtoolsFiltersTest : public test::FiltersTest +class SvtoolsFiltersTest + : public test::FiltersTest + , public test::BootstrapFixture { public: - SvtoolsFiltersTest() : FiltersTest(true, false) {} + SvtoolsFiltersTest() : BootstrapFixture(true, false) {} virtual bool load(const rtl::OUString &, const rtl::OUString &rURL, const rtl::OUString &); |