summaryrefslogtreecommitdiff
path: root/sc/qa/extras
AgeCommit message (Collapse)Author
2016-04-21new plugin stylepoliceNoel Grandin
check for local variables which follow our member field naming convention, which is highly confusing Change-Id: Idacedf7145d09843e96a584237b385f7662eea10
2016-04-20loplugin:salbool: Automatic rewrite of sal_False/TrueStephan Bergmann
Change-Id: I9b99327d58a63dfa5c292784cefb4894ee6d7fa8
2016-03-20loplugin:stringconstantTor Lillqvist
Change-Id: I94db03d7aa812df584cc13e75c132c09ce4b33aa
2016-03-20-Werror,-Winconsistent-missing-overrideTor Lillqvist
Change-Id: Ic197ab65be361ae3e642da2e20da4aba5cb93a74
2016-03-20tdf#45904 move java based api tests to c++kadertarlan
Change-Id: Ibd9411e844c8e42fe625ffd979e936f827099ee9 Reviewed-on: https://gerrit.libreoffice.org/22604 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
2016-03-13this old concept was just a bad idea by meMarkus Mohrhard
Change-Id: Ib13a7a252bdb3f54e520076666f98498c10b4d47
2016-03-13no need for strange assert fail messageMarkus Mohrhard
Change-Id: Id982d0b12e18213a8d76a2d562109d7e2a41d8b5
2016-03-10Extract Directories from BootstrapFixtureBaseStephan Bergmann
(as some tests derive from the latter only for the Directories part, not for the setUp/tearDown overrides: those tests will be cleaned up next) Change-Id: Ib6b78eea868b8bc21d4cc6e8fd9e1d025deca05f Reviewed-on: https://gerrit.libreoffice.org/23078 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
2016-03-07tdf#65219 Fix temp files clean up in sc unit testsAleksas Pantechovskis
Change-Id: I23bf5d47c2cce31d6dd076eeac58cb2ce47b248a Reviewed-on: https://gerrit.libreoffice.org/22953 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Michael Stahl <mstahl@redhat.com>
2016-02-15tdf#45904 move java based api tests to c++kadertarlan
Change-Id: Ia4eedef6a6cb060d756ee83b3fb82afa68ac2c5a Reviewed-on: https://gerrit.libreoffice.org/22276 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com> Tested-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
2016-01-11loplugin:privatebase: Publicly derive from apitest classesStephan Bergmann
Somewhat arbitrarily prefer public over private derivation. Change-Id: I444babc5c5dbbf46d77d3e1439c12399976d8fe8
2015-12-24loplugin:unusedfieldsNoel Grandin
Change-Id: I979592adb978c3757a1e54615021ee424a2e02bf Reviewed-on: https://gerrit.libreoffice.org/20892 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
2015-11-25sc: improve vba macro debugging output.Michael Meeks
Change-Id: I8c8cd6255b6722d4d46d6e652e9d9d9722fe112e
2015-11-25sc: force vba events ordering.Michael Meeks
Otherwise we get workbook load events (eg.) happening at idle, which occurs at (more or less) random places as the StarBasic interpreter Yields every few instructions executed. Change-Id: I51ea57f4ad45e30e04fe84a9dc051ed1c5537536
2015-11-10loplugin:nullptr (automatic rewrite)Stephan Bergmann
Change-Id: I765d2a600f9c57da50c85354688e3ae796750d94
2015-11-06loplugin:stringconstant: elide explicit ctor usage (automatic rewrite)Stephan Bergmann
Change-Id: Ief66447f04245b8ab0a4acbf097eb7283529d45d
2015-11-05use uno::Reference::set method instead of assignmentNoel Grandin
Change-Id: I2b592fd3327f4bbe4685e84711dc9d6f19222a97
2015-10-28com::sun::star->css in scNoel Grandin
Change-Id: I7774890f46f9343e944e34db27af8bce3b1d0915
2015-10-12Replace "SAL_OVERRIDE" with "override" in LIBO_INTERNAL_ONLY codeStephan Bergmann
Change-Id: I2ea407acd763ef2d7dae2d3b8f32525523ac8274
2015-10-02update testTypePassword.odsCaolán McNamara
Change-Id: I648ad2fe4b4cd425b2f7f1014c063169beae54db
2015-10-01tdf#94617 allow to store nStart information greater than sal_Int16 limitLaurent Godard
- preserve backward compatibility - nDebugFlag is stored but not used when loaded - Flag nDebugFlag set the top bit to 1 - stores the multiplier of sal_Int16 limit to reach nStart - in load, test this flag bit - rebuild correct nStart - new B_CURVERSION file format for binary storage macro - unit test for big modules Reviewed-on: https://gerrit.libreoffice.org/18926 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com> (cherry picked from commit db17079fcff6f9a068c499b17f2501cc4c82d10b) Change-Id: Iaa037982d828fef7195615e6eda546b7199a4fe8
2015-08-31New identifier for save/open macro with user defined typesLaurent Godard
no version bump but B_USERTYPE defined fix test from commit de26ef85 that should be nMaxRecords tested full round trip on password protected document (ie. use binary storage) master --(0)--> master --(1)--> libreoffice 4.4 --(2)--> master --(3)--> master (0) in master, User type supported, big module supported (1) in libreoffice 4.4, user type not supported, big module supported, no loss of code (2) in master, user type not supported, big module not found, no loss of code it is OK as libreoffice 4.4 saves to LegacyVersion (3) in master, User type supported, big module supported (all is restored) it is OK as module was saved with CURRENT_VERSION (see sbxmod.cxx) Change-Id: I237cf7de70adf1a755be1bc30987b21c43b6ab35 Reviewed-on: https://gerrit.libreoffice.org/17871 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2015-08-21loplugin:defaultparamsNoel Grandin
Change-Id: Iaf6415d3b33a4ce195a00913a0df69f1fb794217
2015-08-18tdf#75973 : User Defined Types in password encrypted macrosLaurent Godard
save/load basic script so that when executing password protected the user defined types can be rebuilt supports array and nested types a unit test in sc macros-test.cxx Change-Id: Ie127ea7ad9aea3353741048c00f1b3910c5517a4 Reviewed-on: https://gerrit.libreoffice.org/17815 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2015-06-26loplugin:stringconstant: handle OUString+=OUString(literal)Stephan Bergmann
Change-Id: Ie4e62535848718ca66a1fa977b09891e91ee7421
2015-05-26FIXME_REMOVE_WHEN_RE_BASE_COMPLETECaolán McNamara
this part anyway, the sc/qa/unoapi parts are still broken Change-Id: I759c4f82b3bbd4da4dc7d0c9e16aacee02972f51
2015-05-13fix warning when running "make check" with werrorTomaž Vajngerl
Change-Id: I490568b715f21c94a1078fe04368ed7c9132c311
2015-04-14tdf#90447 vba find() should NOT select the found cell.Justin Luth
Change-Id: Ia8c331f33bc81e7bdabeea649a47c73930dae206
2015-04-08tdf#90447 vba end() needed to restore activesheet too.Justin Luth
Change-Id: I650a5112511fd57099be3f0a84314d0577deae22 Reviewed-on: https://gerrit.libreoffice.org/15175 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com> Tested-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
2015-04-03tdf#51460 Calc fails to set undo step after changing image anchor modeHenry Castro
Fixed. Note that the undo button is still grayed out. Calc has not set an undo step. Change-Id: I7ff713a906b365b460351e5202161c9152542395 Reviewed-on: https://gerrit.libreoffice.org/14489 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2015-04-02test color scale entriesMarkus Mohrhard
Change-Id: I95b8a415e6dea108ac1401447e3c645e8a7b75ef
2015-04-02add test for remaining databar propertiesMarkus Mohrhard
Change-Id: I7188af55ebc48838ea236d482e8809a43a99ba9d
2015-04-02add a test for databar entriesMarkus Mohrhard
Change-Id: I38c025481d3135a708668cad00816f22cdd66cc8
2015-03-30WaE clang seems confused with >>= overriden operator and do not detect ↵Norbert Thiebaud
initialization or does not detect that the thing would abort should the init failed.
2015-03-30work on initial colorscale properties testsMarkus Mohrhard
Change-Id: Ifc71437b8c7dfd70bf733863713ada4ad605abad
2015-03-30the implementation is available so enable it againMarkus Mohrhard
Change-Id: Ia5974e57fd4a21897577ff25fb53f48cceb49501
2015-03-30start work on data property testsMarkus Mohrhard
Change-Id: I1f1722aa3566555816df19e68aa7eaa97e7a13d9
2015-03-30fix return typeMarkus Mohrhard
Change-Id: I581a8a0c7348a9752611b378e883ef20172d16e0
2015-03-30add XIndex interface tests for ScCondFormatObjMarkus Mohrhard
Change-Id: I55604485183057f476c636abc4d43bc9fc58711a
2015-03-30add test for XPropertySet for ScCondFormatObjMarkus Mohrhard
Change-Id: I1786a8b1bf871ccefd73efe3e0515bc3a7dda709
2015-03-30prepare test code for next testsMarkus Mohrhard
Change-Id: I38cfba16e3187a9d80b51258c85f06a829a8a76c
2015-03-30add test for one of the ScCondFormatsObj methodsMarkus Mohrhard
Change-Id: I05fc54a2153fd90d03d2575bdd9bde30a54d71c1
2015-03-30add test for conditional format list sizeMarkus Mohrhard
Change-Id: Ib7df18a5ff8f9afa00c925245eae0ae8be9e06e9
2015-03-30add first test for new conditional format APIMarkus Mohrhard
Change-Id: I85cee7b6b55ce35bb900eaf708744117208e57d7
2015-02-25calc : add UNO properties for "Record changes"Laurent Godard
with unit testing Change-Id: I2a0e09f699c8489f61453b4144dd6181bd9b47fd Reviewed-on: https://gerrit.libreoffice.org/14603 Reviewed-by: Eike Rathke <erack@redhat.com> Tested-by: Eike Rathke <erack@redhat.com>
2015-01-13std::cout to SAL_INFOMarkus Mohrhard
Change-Id: I92c48f71baa24cef3b061b9bb6853b99ea1546d4
2015-01-07UNO API test for conditional formatsMatúš Kukan
Change-Id: I45d4b9652f35174eaf59c8868d593764c2ef2ebf
2014-12-19sc: Use appropriate OUString functions on string constantsStephan Bergmann
Change-Id: Iefc8dcb25dd32acbc435bbf2aaa63572915d6753
2014-12-18sc: Use appropriate OUString functions on string constantsStephan Bergmann
Change-Id: Ifc00b2045de0d356e175733b0f03ab0c90083039
2014-10-21sc: remove duplicate test methods from ScTableSheetsObjMichael Stahl
Change-Id: I4b0798a08f650660d1b5daaa41c7ee3618fbab3a