diff options
author | Eike Rathke <erack@redhat.com> | 2013-11-14 20:48:15 +0100 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2013-11-14 20:50:30 +0100 |
commit | bcd594902c366443f0d17b7599267793ac6da204 (patch) | |
tree | bf2f1f5dafb75a2b693b53cdaf8e6ad02d5ecce5 /sc | |
parent | 34aa35784fc23f0da55b2134c9e6e1077638f986 (diff) |
added import test for CONFIDENCE.NORM and CONFIDENCE.T, fdo#71350
Change-Id: Id564e201fab17cccaa6b3e9c4353f9f7719345f9
Diffstat (limited to 'sc')
-rwxr-xr-x | sc/qa/unit/data/xlsx/functions-excel-2010.xlsx | bin | 11548 -> 11858 bytes | |||
-rw-r--r-- | sc/qa/unit/subsequent_filters-test.cxx | 5 |
2 files changed, 4 insertions, 1 deletions
diff --git a/sc/qa/unit/data/xlsx/functions-excel-2010.xlsx b/sc/qa/unit/data/xlsx/functions-excel-2010.xlsx Binary files differindex 03e570e56173..36756ac371dc 100755 --- a/sc/qa/unit/data/xlsx/functions-excel-2010.xlsx +++ b/sc/qa/unit/data/xlsx/functions-excel-2010.xlsx diff --git a/sc/qa/unit/subsequent_filters-test.cxx b/sc/qa/unit/subsequent_filters-test.cxx index 3e90a88b1ab6..100684bd92f0 100644 --- a/sc/qa/unit/subsequent_filters-test.cxx +++ b/sc/qa/unit/subsequent_filters-test.cxx @@ -380,7 +380,7 @@ void ScFiltersTest::testFunctionsExcel2010() ScDocument* pDoc = xDocSh->GetDocument(); pDoc->CalcAll(); // perform hard re-calculation. - // B2:B6 and B8 should all be formula cells, and shouldn't have errors. + // B2:B6 and B8:B10 should all be formula cells, and shouldn't have errors. CPPUNIT_ASSERT_MESSAGE("Expected a formula cell without error.", isFormulaWithoutError(*pDoc, ScAddress(1,1,0))); CPPUNIT_ASSERT_MESSAGE("Expected a formula cell without error.", isFormulaWithoutError(*pDoc, ScAddress(1,2,0))); CPPUNIT_ASSERT_MESSAGE("Expected a formula cell without error.", isFormulaWithoutError(*pDoc, ScAddress(1,3,0))); @@ -392,6 +392,9 @@ void ScFiltersTest::testFunctionsExcel2010() CPPUNIT_ASSERT_MESSAGE("Expected a formula cell without error.", isFormulaWithoutError(*pDoc, ScAddress(1,7,0))); #endif + CPPUNIT_ASSERT_MESSAGE("Expected a formula cell without error.", isFormulaWithoutError(*pDoc, ScAddress(1,8,0))); + CPPUNIT_ASSERT_MESSAGE("Expected a formula cell without error.", isFormulaWithoutError(*pDoc, ScAddress(1,9,0))); + xDocSh->DoClose(); } |