diff options
author | Mike Kaganski <mike.kaganski@collabora.com> | 2024-02-05 13:32:40 +0600 |
---|---|---|
committer | Mike Kaganski <mike.kaganski@collabora.com> | 2024-02-05 09:55:45 +0100 |
commit | bc5e5cb08a91a5daf0e9a5e78cf304b52e1ad369 (patch) | |
tree | 787965d611191e724a5b109639ce359604051b25 /scaddins/qa/analysis.cxx | |
parent | 538f7b45c0c2c08124e9ea51a0947504f142a4f1 (diff) |
tdf#148645: add unit test
This introduces CppunitTest_scaddins_analysis.
Change-Id: I4e6d4215f05bc68852ecac12082e8398cca5be5f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/162982
Tested-by: Jenkins
Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
Diffstat (limited to 'scaddins/qa/analysis.cxx')
-rw-r--r-- | scaddins/qa/analysis.cxx | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/scaddins/qa/analysis.cxx b/scaddins/qa/analysis.cxx new file mode 100644 index 000000000000..5a8cec506e91 --- /dev/null +++ b/scaddins/qa/analysis.cxx @@ -0,0 +1,63 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */ +/* + * This file is part of the LibreOffice project. + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + */ + +#include <test/bootstrapfixture.hxx> + +#include <com/sun/star/lang/XMultiServiceFactory.hpp> +#include <com/sun/star/sheet/addin/XAnalysis.hpp> +#include <com/sun/star/uno/XInterface.hpp> + +#include <com/sun/star/uno/Reference.hxx> + +#include <comphelper/processfactory.hxx> + +namespace +{ +class Test : public test::BootstrapFixture +{ +public: + virtual void setUp() override; + +protected: + css::uno::Reference<css::sheet::addin::XAnalysis> mxAnalysis; +}; + +void Test::setUp() +{ + test::BootstrapFixture::setUp(); + auto xFactory(comphelper::getProcessServiceFactory()); + mxAnalysis.set(xFactory->createInstance(u"com.sun.star.sheet.addin.Analysis"_ustr), + css::uno::UNO_QUERY_THROW); +} + +CPPUNIT_TEST_FIXTURE(Test, test_getDec2Hex) +{ + // Test that 'Places' argument accepts different numeric types + CPPUNIT_ASSERT_EQUAL(u"000000006E"_ustr, + mxAnalysis->getDec2Hex({}, 110, css::uno::Any(sal_Int8(10)))); + CPPUNIT_ASSERT_EQUAL(u"000000006E"_ustr, + mxAnalysis->getDec2Hex({}, 110, css::uno::Any(sal_Int16(10)))); + CPPUNIT_ASSERT_EQUAL(u"000000006E"_ustr, + mxAnalysis->getDec2Hex({}, 110, css::uno::Any(sal_uInt16(10)))); + CPPUNIT_ASSERT_EQUAL(u"000000006E"_ustr, + mxAnalysis->getDec2Hex({}, 110, css::uno::Any(sal_Int32(10)))); + CPPUNIT_ASSERT_EQUAL(u"000000006E"_ustr, + mxAnalysis->getDec2Hex({}, 110, css::uno::Any(sal_uInt32(10)))); + CPPUNIT_ASSERT_EQUAL(u"000000006E"_ustr, + mxAnalysis->getDec2Hex({}, 110, css::uno::Any(sal_Int64(10)))); + CPPUNIT_ASSERT_EQUAL(u"000000006E"_ustr, + mxAnalysis->getDec2Hex({}, 110, css::uno::Any(double(10)))); + CPPUNIT_ASSERT_EQUAL(u"000000006E"_ustr, + mxAnalysis->getDec2Hex({}, 110, css::uno::Any(float(10)))); +} +} + +CPPUNIT_PLUGIN_IMPLEMENT(); + +/* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */ |