mirror of
https://github.com/transmission/transmission
synced 2024-12-22 15:54:57 +00:00
57e6b06921
* Use imported CMake target for CURL * Use imported CMake target for fmtlib * Use imported CMake target for WideInteger * Use imported CMake target for FastFloat * Use imported CMake target for UtfCpp * Use imported CMake target for Threads * Use imported CMake target for Iconv * Use imported CMake target for crypto backend * Use imported CMake target for GTK * Use imported CMake target for Qt * Use imported CMake target for deflate * Use imported CMake target for libevent * Use imported CMake target for natpmp * Use imported CMake target for miniupnpc * Use imported CMake target for dht * Use imported CMake target for psl * Use imported CMake target for libutp * Use imported CMake target for libb64 * Use include directories from libtransmission target
24 lines
755 B
C++
24 lines
755 B
C++
// This file Copyright (C) 2013-2022 Mnemosyne LLC.
|
|
// It may be used under GPLv2 (SPDX: GPL-2.0-only), GPLv3 (SPDX: GPL-3.0-only),
|
|
// or any future license endorsed by Mnemosyne LLC.
|
|
// License text can be found in the licenses/ folder.
|
|
|
|
#include <libtransmission/transmission.h>
|
|
#include <libtransmission/history.h>
|
|
|
|
#include "gtest/gtest.h"
|
|
|
|
TEST(History, recentHistory)
|
|
{
|
|
auto h = tr_recentHistory<size_t, 60>{};
|
|
|
|
h.add(10000, 1);
|
|
EXPECT_EQ(0U, h.count(12000, 1000));
|
|
EXPECT_EQ(1U, h.count(12000, 3000));
|
|
EXPECT_EQ(1U, h.count(12000, 5000));
|
|
h.add(20000, 1);
|
|
EXPECT_EQ(0U, h.count(22000, 1000));
|
|
EXPECT_EQ(1U, h.count(22000, 3000));
|
|
EXPECT_EQ(2U, h.count(22000, 15000));
|
|
EXPECT_EQ(2U, h.count(22000, 20000));
|
|
}
|