system_ram_tests.cpp raw
1 // Copyright (c) 2025-present The Limenka developers
2 // Distributed under the MIT software license, see the accompanying
3 // file COPYING or https://opensource.org/license/mit/.
4
5 #include <common/system_ram.h>
6 #include <test/util/setup_common.h>
7
8 #include <boost/test/unit_test.hpp>
9
10 #include <cstdint>
11 #include <optional>
12
13 BOOST_AUTO_TEST_SUITE(system_ram_tests)
14
15 BOOST_AUTO_TEST_CASE(total_ram)
16 {
17 const auto total{*Assert(TryGetTotalRam())};
18 BOOST_CHECK_GE(total, 1_GiB);
19 BOOST_CHECK_LT(total, 10'000_GiB); // ~10 TiB memory is unlikely
20 }
21
22 BOOST_AUTO_TEST_SUITE_END()
23