summaryrefslogtreecommitdiff
path: root/basic
diff options
context:
space:
mode:
authorNoel Power <noel.power@suse.com>2013-03-07 10:52:51 +0000
committerNoel Power <noel.power@suse.com>2013-03-07 10:56:45 +0000
commit20f12a1d7ad5f9694f901a85e1fa22f46c3953a2 (patch)
tree0ee4957c28f5da53688ea8d9a3e254f71b7e848a /basic
parent8534787f95dfbfff24167b2160cfe07a1b70bcc6 (diff)
Nested_Struct should really inherit from test::BootstrapFixture
Change-Id: I06255940f41c32493187d1ec847f7238fef4e9f8
Diffstat (limited to 'basic')
-rw-r--r--basic/qa/cppunit/test_nested_struct.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/basic/qa/cppunit/test_nested_struct.cxx b/basic/qa/cppunit/test_nested_struct.cxx
index 266d11fe5280..8c7fabcdec85 100644
--- a/basic/qa/cppunit/test_nested_struct.cxx
+++ b/basic/qa/cppunit/test_nested_struct.cxx
@@ -19,10 +19,10 @@
namespace
{
using namespace com::sun::star;
- class Nested_Struct : public BasicTestBase
+ class Nested_Struct : public test::BootstrapFixture
{
public:
- Nested_Struct() {};
+ Nested_Struct(): BootstrapFixture(true, false) {};
void testAssign1();
void testAssign1Alt(); // result is uno-ised and tested
void testOldAssign();