summaryrefslogtreecommitdiff
path: root/sc/qa/unit
AgeCommit message (Collapse)Author
2013-05-03Additional unit test for sorting.Kohei Yoshida
Change-Id: Ic7834a07341cee2b2fdcff3ae0707755e5500347
2013-04-30Unit test for the earlier reference toggling bug.Kohei Yoshida
Change-Id: If9c05add57c87f56e8514cee75b89e09c74277f5
2013-04-22Move to MPLv2 license headers, with ESC decision and author's permission.Michael Meeks
2013-04-13Get cppunit in sc to link with orcus-parser.Kohei Yoshida
Change-Id: I1f53a4f4b9beee501e29149ed88e3ce5d63d9a3c
2013-04-08fdo#62116: Be sure to convert relative URLs into absolute ones.Kohei Yoshida
Just to preserve the old (and correct) behavior. Change-Id: I229e0b80097f6d70ff3023072b52576815010b15
2013-04-08fdo#62116: Unit test for the fix.Kohei Yoshida
For now, we'll only check whether or not those field items with formats get imported at all. We should add additional checks for their formats later. Change-Id: I5a8f01a6e2594b8c97183a43fc4f3417df6fb561
2013-04-08fdo#62116: Handle field objects with formats correctly.Kohei Yoshida
Field objects can have formats applied to them, and when they do, they appear inside a <text:span> element. Change-Id: I7b4346389f393a4ddf708670b2c524a6594128b5
2013-04-08fdo#62116: Add failing cell content to the test file.Kohei Yoshida
Change-Id: I8139c5b65f5953ad62047ee87f298b68141086b1
2013-04-07mass removal of rtl:: prefixes for O(U)String*Luboš Luňák
Modules sal, salhelper, cppu, cppuhelper, codemaker (selectively) and odk have kept them, in order not to break external API (the automatic using declaration is LO-internal). Change-Id: I588fc9e0c45b914f824f91c0376980621d730f09
2013-03-28Move ScFormulaCell into its own header source files: formulacell.?xx.Kohei Yoshida
Change-Id: I65f2cb12c06784b5bcf6c6a2fad773825b6c409c
2013-03-28More on replacing ScBaseCell.Kohei Yoshida
Change-Id: I2a512d0421ddac5bf92ad128ea2dde5772f854dd
2013-03-27More ScBaseCell reduction...Kohei Yoshida
Change-Id: I3a9f9ce79de7117e7b1410c45b217e5bfe005db7
2013-03-26add inital test case for fdo#62206Markus Mohrhard
Change-Id: I0a88f4cbd70f5acf84b9c1c6704ac0be92b79c5b
2013-03-25a few more cases where we should close the doc after the testMarkus Mohrhard
Change-Id: I46b00d62d604ecc80f079cf91671de3c07a1b589
2013-03-24close documents at the end of the testMarkus Mohrhard
Change-Id: Ic0b60a2420c82f431c5790483e922ed2164f09fb
2013-03-24use ASSERT_DOUBLES_EQUAL instead of CPPUNIT_ASSERT_DOUBLES_EQUAL in calcMarkus Mohrhard
Change-Id: I55979aec2ab0140190f58f96ed108e8dd1e3a051
2013-03-23add ODS test for above/below cond format rulesMarkus Mohrhard
Change-Id: I6ce6292a490ef39c111aa7f4c0a5ada0d45c16bc
2013-03-23fix spelling errorMarkus Mohrhard
Change-Id: I700f25f16ab77212c1f3fdc4be1eb24f4c614c30
2013-03-22Add convenience methods to set maximum text input and numeric input modes.Kohei Yoshida
And remove one use of ScDocument::PutCell(). Change-Id: Iaa3c115794894964cb7c9f809235cdb7669be094
2013-03-22More on reducing the ScBaseCell usage. That's it for today.Kohei Yoshida
Change-Id: Ie35681e62a4ebcd792fd2f4dd62b5c4b8e4db49c
2013-03-22add databar export testMarkus Mohrhard
Change-Id: I0770d20911307ddd9426417314bebbe569660b14
2013-03-22add export test for color scalesMarkus Mohrhard
Change-Id: I68ff1309c2769866c0821f7857f13103b8752cb5
2013-03-22move the include statement to the correct header fileMarkus Mohrhard
Change-Id: Ibed6ec565588dedb991037297c418e1a76235dbb
2013-03-22remove two unused test filesMarkus Mohrhard
Change-Id: If7d4167424f5a80733bed9f58e488e6a2a44d12d
2013-03-22add import test for color scalesMarkus Mohrhard
Change-Id: Ie85f8efd520aaf4e10b560c637a74fbd9e25530b
2013-03-22update the test filesMarkus Mohrhard
Change-Id: I0285e9d6739e7f2a9882fd19f03524482128e2d2
2013-03-22add import test for data barsMarkus Mohrhard
Change-Id: Ida98e51a7f9970c7d4c845f5a6ac1566cbed9e3a
2013-03-22let us use ScBootstrapFixture::loadDoc hereMarkus Mohrhard
Change-Id: Ia5d29da921e53b8443541e5f69e2bbc7fd99edfa
2013-03-22make method name consistentMarkus Mohrhard
Change-Id: I5fd08be86c68b788510d04ff6df6c3938c43e625
2013-03-22remove disabled testsMarkus Mohrhard
Change-Id: I56490efc131cb25baa279b6f8204cf8f5d3af8c4
2013-03-20Remove redundant "const" to silence bogus MSVC warningsStephan Bergmann
Change-Id: Ice6615b4b0c9367efc278c3b399f6c35ede6fcd7
2013-03-20'size_t' is not the same as 'unsigned long'Tor Lillqvist
So using %lu to printf 'size_t' is not 100% portable either. At least in 64-bit Windows code 'size_t' is 64 bits but 'unsigned long' is 32 bits. Let's just use 'unsigned' for the loop indexes here (and %u as the format). After all, they are single-digit numbers. Alternatively, could just use C++ stream output for this purely informative printout. Change-Id: I604e1c6c6a910c86b5f1408bee1d9c2c7a8b76ff
2013-03-19-Werror=format, "fix %d expects argument of type int"Julien Nabet
Change-Id: I654d035bc79ba157c6fdd01edf7930ef05f7b970
2013-03-19calm debug, and disable unless SC_FORMULAGROUP=1Michael Meeks
Change-Id: I091d43dfa33f440edd50a1c937ef6e6f1930be4e
2013-03-19use cell hashing algorithm for computing groups.Michael Meeks
Update unit tests, dumb-down hashing to compare more for similiarity rather than identicality - we want to use this down columns. Change-Id: Icea731daeb301e1febb2df48b6b46c9faba74e9d
2013-03-19Unit test for formula token array vectorization state.Kohei Yoshida
Change-Id: I91dce36e56d86899ba506beb29df6188f10966c0
2013-03-19Reduce dependency on document.hxx. Prefer forward declaration.Kohei Yoshida
Change-Id: I9b0c86735284ec435cceb3acd9bad97a6e523a74
2013-03-19Add accessor to ScDocument for formula cell's vectorization state.Kohei Yoshida
Change-Id: I3c781764c6375dadb173bc5ab3cfb79857e2aeca
2013-03-19Fix build breakage.Kohei Yoshida
Change-Id: I94b9d17a045a9c17d9e97aa582d7572e0a21809b
2013-03-19add initial formula group unit tests.Michael Meeks
Change-Id: Id4dd3cc0d3d8a4db641e316d2eda44a5b94105c7
2013-03-19Embed reference tokens in the generated hash values.Kohei Yoshida
Also make the test code a bit easier to extend. Change-Id: Ib4e381cc139231884999c9d0dc9f51201e11f807
2013-03-19Fix minor stuff in the test code...Kohei Yoshida
Change-Id: I6c1ebf29d357c1a575a8b7d5421043ddec44f0af
2013-03-19Implement (partially?) and test formula token array hash function.Kohei Yoshida
For now, we don't factor in any differences in reference tokens in the generated hash values. Change-Id: Ie9836228eaad9c74edd884c3e8c4b273979760fd
2013-03-19removal of RTL_CONSTASCII_USTRINGPARAM for quoted OUStrings declarationsThomas Arnhold
s/(OUString\s+[a-zA-Z_][A-Za-z0-9_]*\s*)\(\s*RTL_CONSTASCII_USTRINGPARAM\s*\((\s*"[^")]*?"\s*)\)\s*\)/$1\($2\)/gms Change-Id: Iad20f242c80c4bdc69df17e2d7a69d58ea53654b Reviewed-on: https://gerrit.libreoffice.org/2835 Reviewed-by: Thomas Arnhold <thomas@arnhold.org> Tested-by: Thomas Arnhold <thomas@arnhold.org>
2013-03-19automated removal of RTL_CONSTASCII_USTRINGPARAM for quoted OUStringsThomas Arnhold
Done with a perl regex: s/OUString\s*\(\s*RTL_CONSTASCII_USTRINGPARAM\s*\((\s*"[^")]*?"\s*)\)\s*\)/OUString\($1\)/gms Change-Id: Idf28320817cdcbea6d0f7ec06a9bf51bd2c3b3ec Reviewed-on: https://gerrit.libreoffice.org/2832 Reviewed-by: Thomas Arnhold <thomas@arnhold.org> Tested-by: Thomas Arnhold <thomas@arnhold.org>
2013-03-19that should not have been in the patchMarkus Mohrhard
2013-03-19let us keep the gnumeric value handling in xmloffMarkus Mohrhard
Change-Id: I51c7ca53ec8b023dc06b43ec9cb1052d135d14d5
2013-03-15Unit test to catch the out-of-sync text width bug I just fixed today.Kohei Yoshida
Change-Id: I82d4199d7f8b7ba2dadb734a808dac53e845538f
2013-03-14Remove ambiguity for the windows build.Kohei Yoshida
Change-Id: I9b94281f7acd2223686508baa219b87c13838d5c
2013-03-14Unit test for the new column-based text width storage, via new iterator.Kohei Yoshida
Change-Id: Ibf1e254e34df98ad5c46a46252168787b07d161c