// Copyright (c) 2025-present The Limenka developers // Distributed under the MIT software license, see the accompanying // file COPYING or https://opensource.org/license/mit/. #include #include #include #include #include BOOST_AUTO_TEST_SUITE(system_ram_tests) BOOST_AUTO_TEST_CASE(total_ram) { const auto total{*Assert(TryGetTotalRam())}; BOOST_CHECK_GE(total, 1_GiB); BOOST_CHECK_LT(total, 10'000_GiB); // ~10 TiB memory is unlikely } BOOST_AUTO_TEST_SUITE_END()