mirror of
https://github.com/XRPLF/rippled.git
synced 2026-04-29 15:37:57 +00:00
This change updates the ColumnLimit from 80 to 120, and applies clang-format to reformat the code.
52 lines
1.5 KiB
C++
52 lines
1.5 KiB
C++
#include <xrpl/beast/unit_test.h>
|
|
#include <xrpl/beast/unit_test/suite.h>
|
|
#include <xrpl/protocol/ApiVersion.h>
|
|
|
|
#include <array>
|
|
#include <cstdint>
|
|
#include <limits>
|
|
#include <optional>
|
|
#include <type_traits>
|
|
#include <utility>
|
|
|
|
namespace xrpl {
|
|
namespace test {
|
|
struct ApiVersion_test : beast::unit_test::suite
|
|
{
|
|
void
|
|
run() override
|
|
{
|
|
{
|
|
testcase("API versions invariants");
|
|
|
|
static_assert(RPC::apiMinimumSupportedVersion <= RPC::apiMaximumSupportedVersion);
|
|
static_assert(RPC::apiMinimumSupportedVersion <= RPC::apiMaximumValidVersion);
|
|
static_assert(RPC::apiMaximumSupportedVersion <= RPC::apiMaximumValidVersion);
|
|
static_assert(RPC::apiBetaVersion <= RPC::apiMaximumValidVersion);
|
|
|
|
BEAST_EXPECT(true);
|
|
}
|
|
|
|
{
|
|
// Update when we change versions
|
|
testcase("API versions");
|
|
|
|
static_assert(RPC::apiMinimumSupportedVersion >= 1);
|
|
static_assert(RPC::apiMinimumSupportedVersion < 2);
|
|
static_assert(RPC::apiMaximumSupportedVersion >= 2);
|
|
static_assert(RPC::apiMaximumSupportedVersion < 3);
|
|
static_assert(RPC::apiMaximumValidVersion >= 3);
|
|
static_assert(RPC::apiMaximumValidVersion < 4);
|
|
static_assert(RPC::apiBetaVersion >= 3);
|
|
static_assert(RPC::apiBetaVersion < 4);
|
|
|
|
BEAST_EXPECT(true);
|
|
}
|
|
}
|
|
};
|
|
|
|
BEAST_DEFINE_TESTSUITE(ApiVersion, protocol, xrpl);
|
|
|
|
} // namespace test
|
|
} // namespace xrpl
|