Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/LibreOffice/o3tl/qa/   (Office von Apache Version 25.8.3.2©)  Datei vom 5.10.2025 mit Größe 2 kB image not shown  

Quelle  test-hash_combine.cxx   Sprache: C

 
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
 * 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 <cppunit/TestAssert.h>
#include <cppunit/TestFixture.h>
#include <cppunit/extensions/HelperMacros.h>

#include <sal/types.h>
#include <rtl/ustring.hxx>
#include <o3tl/hash_combine.hxx>

namespace
{
struct TestStruct
{
};

class HashCombineTest : public CppUnit::TestFixture
{
public:
    void testBaseUsage()
    {
        TestStruct objectA;
        TestStruct objectB;

        {
            sal_uInt64 seed(0);
            o3tl::hash_combine(seed, OUString("Hmm-.."));
            o3tl::hash_combine(seed, 24);
            o3tl::hash_combine(seed, 42u);
            o3tl::hash_combine(seed, 5.1);
            o3tl::hash_combine(seed, &objectA);
            o3tl::hash_combine(seed, &objectB);
            CPPUNIT_ASSERT(seed != sal_uInt64(0));

            static_assert(sizeof(seed) == 8);
        }

        {
            sal_uInt32 seed(0);
            o3tl::hash_combine(seed, OUString("Hmm-.."));
            o3tl::hash_combine(seed, 24);
            o3tl::hash_combine(seed, 42u);
            o3tl::hash_combine(seed, 5.1);
            o3tl::hash_combine(seed, &objectA);
            o3tl::hash_combine(seed, &objectB);
            CPPUNIT_ASSERT(seed != sal_uInt32(0));

            static_assert(sizeof(seed) == 4);
        }

        // No assert of the actual value - we just check this compiles and runs. Hash algorithm is probably
        // also implementation specific.

        // Using sal_uInt16 for seed doesn't compile as there is not compatible hash_combine override for seed that is 16 bit.
    }

    CPPUNIT_TEST_SUITE(HashCombineTest);
    CPPUNIT_TEST(testBaseUsage);
    CPPUNIT_TEST_SUITE_END();
};
}

CPPUNIT_TEST_SUITE_REGISTRATION(HashCombineTest);

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Messung V0.5
C=94 H=91 G=92

¤ Dauer der Verarbeitung: 0.3 Sekunden  ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

Beweissystem der NASA

Beweissystem Isabelle

NIST Cobol Testsuite

Cephes Mathematical Library

Wiener Entwicklungsmethode

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.