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
912189fd
Kaydet (Commit)
912189fd
authored
May 19, 2015
tarafından
Markus Mohrhard
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
add test for OOXML ref string conversion
Change-Id: Icef24eb47b34f1609026a4ead01329846034405a
üst
02b6abe8
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
0 deletions
+18
-0
ref_string.xlsx
sc/qa/unit/data/xlsx/ref_string.xlsx
+0
-0
subsequent_filters-test.cxx
sc/qa/unit/subsequent_filters-test.cxx
+18
-0
No files found.
sc/qa/unit/data/xlsx/ref_string.xlsx
0 → 100644
Dosyayı görüntüle @
912189fd
File added
sc/qa/unit/subsequent_filters-test.cxx
Dosyayı görüntüle @
912189fd
...
...
@@ -199,6 +199,7 @@ public:
void
testVBAUserFunctionXLSM
();
void
testEmbeddedImageXLS
();
void
testEditEngStrikeThroughXLSX
();
void
testRefStringXLSX
();
CPPUNIT_TEST_SUITE
(
ScFiltersTest
);
CPPUNIT_TEST
(
testBooleanFormatXLSX
);
...
...
@@ -291,6 +292,7 @@ public:
CPPUNIT_TEST
(
testEmbeddedImageXLS
);
CPPUNIT_TEST
(
testErrorOnExternalReferences
);
CPPUNIT_TEST
(
testEditEngStrikeThroughXLSX
);
CPPUNIT_TEST
(
testRefStringXLSX
);
CPPUNIT_TEST_SUITE_END
();
private
:
...
...
@@ -3045,6 +3047,22 @@ void ScFiltersTest::testEditEngStrikeThroughXLSX()
}
}
void
ScFiltersTest
::
testRefStringXLSX
()
{
ScDocShellRef
xDocSh
=
loadDoc
(
"ref_string."
,
XLSX
);
CPPUNIT_ASSERT_MESSAGE
(
"Failed to open doc"
,
xDocSh
.
Is
());
ScDocument
&
rDoc
=
xDocSh
->
GetDocument
();
double
nVal
=
rDoc
.
GetValue
(
2
,
2
,
0
);
ASSERT_DOUBLES_EQUAL
(
3.0
,
nVal
);
const
ScCalcConfig
&
rCalcConfig
=
rDoc
.
GetCalcConfig
();
CPPUNIT_ASSERT_EQUAL
(
formula
::
FormulaGrammar
::
CONV_XL_A1
,
rCalcConfig
.
meStringRefAddressSyntax
);
xDocSh
->
DoClose
();
}
ScFiltersTest
::
ScFiltersTest
()
:
ScBootstrapFixture
(
"/sc/qa/unit/data"
)
{
...
...
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