Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
526f792d
Kaydet (Commit)
526f792d
authored
Eki 22, 2015
tarafından
Łukasz Hryniuk
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
tdf#89387 test for TTEST function
Change-Id: I9d1d83f1ba9b74d248321f617e2ba6745bdc2c01
üst
232a98b1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
107 additions
and
0 deletions
+107
-0
ucalc.hxx
sc/qa/unit/ucalc.hxx
+2
-0
ucalc_formula.cxx
sc/qa/unit/ucalc_formula.cxx
+105
-0
No files found.
sc/qa/unit/ucalc.hxx
Dosyayı görüntüle @
526f792d
...
...
@@ -187,6 +187,7 @@ public:
void
testFuncFTEST
();
void
testFuncFTESTBug
();
void
testFuncCHITEST
();
void
testFuncTTEST
();
void
testFuncSUMX2PY2
();
void
testFuncSUMX2MY2
();
void
testFuncGCD
();
...
...
@@ -527,6 +528,7 @@ public:
CPPUNIT_TEST
(
testFuncFTEST
);
CPPUNIT_TEST_FAIL
(
testFuncFTESTBug
);
CPPUNIT_TEST
(
testFuncCHITEST
);
CPPUNIT_TEST
(
testFuncTTEST
);
CPPUNIT_TEST
(
testFuncSUMX2PY2
);
CPPUNIT_TEST
(
testFuncSUMX2MY2
);
CPPUNIT_TEST
(
testFuncGCD
);
...
...
sc/qa/unit/ucalc_formula.cxx
Dosyayı görüntüle @
526f792d
...
...
@@ -6084,6 +6084,111 @@ void Test::testFuncCHITEST()
m_pDoc->DeleteTab(0);
}
void Test::testFuncTTEST()
{
sc::AutoCalcSwitch aACSwitch(*m_pDoc, true); // turn auto calc on.
m_pDoc->InsertTab(0, "TTest");
ScAddress aPos(6,0,0);
// type 1, mode/tails 1
m_pDoc->SetString(aPos, "=TTEST(A1:C3;D1:F3;1;1)");
OUString aVal = m_pDoc->GetString(aPos);
CPPUNIT_ASSERT_EQUAL_MESSAGE("TTEST should return #VALUE! for empty matrices",
OUString("#VALUE!"), aVal);
m_pDoc->SetValue(0, 0, 0, 8.0); // A1
m_pDoc->SetValue(1, 0, 0, 2.0); // B1
m_pDoc->SetValue(3, 0, 0, 3.0); // D1
m_pDoc->SetValue(4, 0, 0, 1.0); // E1
CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE("Calculation of TTEST failed", 0.18717, m_pDoc->GetValue(aPos), 10e-5);
m_pDoc->SetValue(2, 0, 0, 1.0); // C1
CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE("Calculation of TTEST failed", 0.18717, m_pDoc->GetValue(aPos), 10e-5);
m_pDoc->SetValue(5, 0, 0, 6.0); // F1
CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE("Calculation of TTEST failed", 0.45958, m_pDoc->GetValue(aPos), 10e-5);
m_pDoc->SetValue(0, 1, 0, -4.0); // A2
CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE("Calculation of TTEST failed", 0.45958, m_pDoc->GetValue(aPos), 10e-5);
m_pDoc->SetValue(3, 1, 0, 1.0); // D2
CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE("Calculation of TTEST failed", 0.35524, m_pDoc->GetValue(aPos), 10e-5);
m_pDoc->SetValue(1, 1, 0, 5.0); // B2
CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE("Calculation of TTEST failed", 0.35524, m_pDoc->GetValue(aPos), 10e-5);
m_pDoc->SetValue(4, 1, 0, -2.0); // E2
CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE("Calculation of TTEST failed", 0.41043, m_pDoc->GetValue(aPos), 10e-5);
m_pDoc->SetValue(2, 1, 0, -1.0); // C2
CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE("Calculation of TTEST failed", 0.41043, m_pDoc->GetValue(aPos), 10e-5);
m_pDoc->SetValue(5, 1, 0, -3.0); // F2
CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE("Calculation of TTEST failed", 0.34990, m_pDoc->GetValue(aPos), 10e-5);
m_pDoc->SetValue(0, 2, 0, 10.0); // A3
CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE("Calculation of TTEST failed", 0.34990, m_pDoc->GetValue(aPos), 10e-5);
m_pDoc->SetValue(3, 2, 0, 10.0); // D3
CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE("Calculation of TTEST failed", 0.34686, m_pDoc->GetValue(aPos), 10e-5);
m_pDoc->SetValue(1, 2, 0, 3.0); // B3
CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE("Calculation of TTEST failed", 0.34686, m_pDoc->GetValue(aPos), 10e-5);
m_pDoc->SetValue(4, 2, 0, 9.0); // E3
CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE("Calculation of TTEST failed", 0.47198, m_pDoc->GetValue(aPos), 10e-5);
m_pDoc->SetValue(2, 2, 0, -5.0); // C3
CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE("Calculation of TTEST failed", 0.47198, m_pDoc->GetValue(aPos), 10e-5);
m_pDoc->SetValue(5, 2, 0, 6.0); // F3
CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE("Calculation of TTEST failed", 0.25529, m_pDoc->GetValue(aPos), 10e-5);
m_pDoc->SetString(1, 1, 0, "a"); // B2
CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE("Calculation of TTEST failed", 0.12016, m_pDoc->GetValue(aPos), 10e-5);
m_pDoc->SetString(4, 1, 0, "b"); // E2
CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE("Calculation of TTEST failed", 0.12016, m_pDoc->GetValue(aPos), 10e-5);
m_pDoc->SetString(2, 2, 0, "c"); // C3
CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE("Calculation of TTEST failed", 0.25030, m_pDoc->GetValue(aPos), 10e-5);
m_pDoc->SetString(5, 1, 0, "d"); // F2
CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE("Calculation of TTEST failed", 0.19637, m_pDoc->GetValue(aPos), 10e-5);
// type 1, mode/tails 2
m_pDoc->SetString(aPos, "=TTEST(A1:C3;D1:F3;2;1)");
CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE("Calculation of TTEST failed", 0.39273, m_pDoc->GetValue(aPos), 10e-5);
m_pDoc->SetValue(1, 1, 0, 4.0); // B2
CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE("Calculation of TTEST failed", 0.39273, m_pDoc->GetValue(aPos), 10e-5);
m_pDoc->SetValue(4, 1, 0, 3.0); // E2
CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE("Calculation of TTEST failed", 0.43970, m_pDoc->GetValue(aPos), 10e-5);
m_pDoc->SetValue(2, 2, 0, -2.0); // C3
CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE("Calculation of TTEST failed", 0.22217, m_pDoc->GetValue(aPos), 10e-5);
m_pDoc->SetValue(5, 1, 0, -10.0); // F2
CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE("Calculation of TTEST failed", 0.64668, m_pDoc->GetValue(aPos), 10e-5);
m_pDoc->SetValue(0, 1, 0, 3.0); // A2
CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE("Calculation of TTEST failed", 0.95266, m_pDoc->GetValue(aPos), 10e-5);
m_pDoc->SetValue(3, 2, 0, -1.0); // D3
CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE("Calculation of TTEST failed", 0.62636, m_pDoc->GetValue(aPos), 10e-5);
// type 2, mode/tails 2
m_pDoc->SetString(aPos, "=TTEST(A1:C3;D1:F3;2;2)");
CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE("Calculation of TTEST failed", 0.62549, m_pDoc->GetValue(aPos), 10e-5);
m_pDoc->SetValue(5, 1, 0, -1.0); // F2
CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE("Calculation of TTEST failed", 0.94952, m_pDoc->GetValue(aPos), 10e-5);
m_pDoc->SetValue(2, 2, 0, 5.0); // C3
CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE("Calculation of TTEST failed", 0.58876, m_pDoc->GetValue(aPos), 10e-5);
m_pDoc->SetValue(2, 1, 0, 2.0); // C2
CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE("Calculation of TTEST failed", 0.43205, m_pDoc->GetValue(aPos), 10e-5);
m_pDoc->SetValue(3, 2, 0, -4.0); // D3
CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE("Calculation of TTEST failed", 0.36165, m_pDoc->GetValue(aPos), 10e-5);
m_pDoc->SetValue(0, 1, 0, 1.0); // A2
CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE("Calculation of TTEST failed", 0.44207, m_pDoc->GetValue(aPos), 10e-5);
// type 3, mode/tails 1
m_pDoc->SetString(aPos, "=TTEST(A1:C3;D1:F3;1;3)");
CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE("Calculation of TTEST failed", 0.22132, m_pDoc->GetValue(aPos), 10e-5);
m_pDoc->SetValue(0, 0, 0, 1.0); // A1
CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE("Calculation of TTEST failed", 0.36977, m_pDoc->GetValue(aPos), 10e-5);
m_pDoc->SetValue(0, 2, 0, -30.0); // A3
CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE("Calculation of TTEST failed", 0.16871, m_pDoc->GetValue(aPos), 10e-5);
m_pDoc->SetValue(3, 1, 0, 5.0); // D2
CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE("Calculation of TTEST failed", 0.14396, m_pDoc->GetValue(aPos), 10e-5);
m_pDoc->SetValue(5, 1, 0, 2.0); // F2
CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE("Calculation of TTEST failed", 0.12590, m_pDoc->GetValue(aPos), 10e-5);
m_pDoc->SetValue(4, 2, 0, 2.0); // E3
CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE("Calculation of TTEST failed", 0.16424, m_pDoc->GetValue(aPos), 10e-5);
m_pDoc->SetValue(5, 0, 0, -1.0); // F1
CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE("Calculation of TTEST failed", 0.21472, m_pDoc->GetValue(aPos), 10e-5);
m_pDoc->DeleteTab(0);
}
void Test::testFuncSUMX2PY2()
{
sc::AutoCalcSwitch aACSwitch(*m_pDoc, true); // turn auto calc on.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment