From bcd594902c366443f0d17b7599267793ac6da204 Mon Sep 17 00:00:00 2001 From: Eike Rathke Date: Thu, 14 Nov 2013 20:48:15 +0100 Subject: added import test for CONFIDENCE.NORM and CONFIDENCE.T, fdo#71350 Change-Id: Id564e201fab17cccaa6b3e9c4353f9f7719345f9 --- sc/qa/unit/data/xlsx/functions-excel-2010.xlsx | Bin 11548 -> 11858 bytes sc/qa/unit/subsequent_filters-test.cxx | 5 ++++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/sc/qa/unit/data/xlsx/functions-excel-2010.xlsx b/sc/qa/unit/data/xlsx/functions-excel-2010.xlsx index 03e570e56173..36756ac371dc 100755 Binary files a/sc/qa/unit/data/xlsx/functions-excel-2010.xlsx and b/sc/qa/unit/data/xlsx/functions-excel-2010.xlsx differ 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(); } -- cgit