File: postingcodectest.cpp

package info (click to toggle)
baloo-kf5 5.103.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 4,880 kB
  • sloc: cpp: 25,143; sh: 23; xml: 15; makefile: 9
file content (34 lines) | stat: -rw-r--r-- 651 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/*
    This file is part of the KDE Baloo project.
    SPDX-FileCopyrightText: 2015 Vishesh Handa <vhanda@kde.org>

    SPDX-License-Identifier: LGPL-2.1-or-later
*/

#include "postingcodec.h"

#include <QObject>
#include <QTest>

using namespace Baloo;

class PostingCodecTest : public QObject
{
    Q_OBJECT
private Q_SLOTS:
    void test() {
        PostingCodec codec;

        QVector<quint64> vec = {1, 2, 9, 12};
        QByteArray arr = codec.encode(vec);
        QVERIFY(!arr.isEmpty());

        QVector<quint64> vec2 = codec.decode(arr);
        QCOMPARE(vec2, vec);
    }

};

QTEST_MAIN(PostingCodecTest)

#include "postingcodectest.moc"