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
bb7c3821
Kaydet (Commit)
bb7c3821
authored
Tem 21, 2015
tarafından
Eike Rathke
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
unit test for MATCH ReferenceOrForceArray parameter
Change-Id: I534480411d6c164f9f0955933b612c1a219402fd
üst
74cc3fbc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
0 deletions
+19
-0
ucalc_formula.cxx
sc/qa/unit/ucalc_formula.cxx
+19
-0
No files found.
sc/qa/unit/ucalc_formula.cxx
Dosyayı görüntüle @
bb7c3821
...
@@ -4263,6 +4263,25 @@ void Test::testFuncMATCH()
...
@@ -4263,6 +4263,25 @@ void Test::testFuncMATCH()
CPPUNIT_ASSERT_EQUAL
(
OUString
(
"6"
),
m_pDoc
->
GetString
(
ScAddress
(
1
,
0
,
0
)));
CPPUNIT_ASSERT_EQUAL
(
OUString
(
"6"
),
m_pDoc
->
GetString
(
ScAddress
(
1
,
0
,
0
)));
}
}
{
// Test the ReferenceOrForceArray parameter.
clearRange
(
m_pDoc
,
ScRange
(
0
,
0
,
0
,
1
,
7
,
0
));
// B1:B5 contain numeric values.
m_pDoc
->
SetValue
(
ScAddress
(
1
,
0
,
0
),
1.0
);
m_pDoc
->
SetValue
(
ScAddress
(
1
,
1
,
0
),
2.0
);
m_pDoc
->
SetValue
(
ScAddress
(
1
,
2
,
0
),
3.0
);
m_pDoc
->
SetValue
(
ScAddress
(
1
,
3
,
0
),
4.0
);
m_pDoc
->
SetValue
(
ScAddress
(
1
,
4
,
0
),
5.0
);
// Find string value "33" in concatenated array, no implicit
// intersection is involved, array is forced.
m_pDoc
->
SetString
(
ScAddress
(
0
,
5
,
0
),
"=MATCH(
\"
33
\"
;B1:B5&B1:B5)"
);
m_pDoc
->
CalcAll
();
CPPUNIT_ASSERT_EQUAL
(
3.0
,
m_pDoc
->
GetValue
(
ScAddress
(
0
,
5
,
0
)));
}
m_pDoc
->
DeleteTab
(
0
);
m_pDoc
->
DeleteTab
(
0
);
}
}
...
...
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