summaryrefslogtreecommitdiff
path: root/sc/qa
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2013-03-24 05:31:22 +0100
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2013-03-25 13:17:32 +0100
commit8ff2fd867544885cb6bbb2ff85cbd9b330d9e6ee (patch)
treea812d63ef7949d9d471013cc26e04593cdc34417 /sc/qa
parentbbbd65ad425ec2f1fa96f4ab15fac7f256d39061 (diff)
a few more cases where we should close the doc after the test
Change-Id: I46b00d62d604ecc80f079cf91671de3c07a1b589
Diffstat (limited to 'sc/qa')
-rw-r--r--sc/qa/unit/subsequent_filters-test.cxx8
1 files changed, 8 insertions, 0 deletions
diff --git a/sc/qa/unit/subsequent_filters-test.cxx b/sc/qa/unit/subsequent_filters-test.cxx
index 187a81a205e0..130be28a49ec 100644
--- a/sc/qa/unit/subsequent_filters-test.cxx
+++ b/sc/qa/unit/subsequent_filters-test.cxx
@@ -1742,6 +1742,8 @@ void ScFiltersTest::testDataBarODS()
ScDocument* pDoc = xDocSh->GetDocument();
CPPUNIT_ASSERT(pDoc);
testDataBar_Impl(pDoc);
+
+ xDocSh->DoClose();
}
void ScFiltersTest::testDataBarXLSX()
@@ -1752,6 +1754,8 @@ void ScFiltersTest::testDataBarXLSX()
ScDocument* pDoc = xDocSh->GetDocument();
CPPUNIT_ASSERT(pDoc);
testDataBar_Impl(pDoc);
+
+ xDocSh->DoClose();
}
void ScFiltersTest::testColorScaleODS()
@@ -1763,6 +1767,8 @@ void ScFiltersTest::testColorScaleODS()
testColorScale2Entry_Impl(pDoc);
testColorScale3Entry_Impl(pDoc);
+
+ xDocSh->DoClose();
}
void ScFiltersTest::testColorScaleXLSX()
@@ -1774,6 +1780,8 @@ void ScFiltersTest::testColorScaleXLSX()
testColorScale2Entry_Impl(pDoc);
testColorScale3Entry_Impl(pDoc);
+
+ xDocSh->DoClose();
}
void ScFiltersTest::testNewCondFormatODS()