blob: c1186a1fbdc2502e504f463319a80a8b740967b5 [file]
// Copyright 2023 The ChromiumOS Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "libec/rand_num_params.h"
#include <gtest/gtest.h>
namespace ec {
namespace {
TEST(RandNumParam, Size) {
EXPECT_EQ(sizeof(rand::RandNumResp), kMaxPacketSize);
EXPECT_EQ(sizeof(ec_response_rand_num), 0);
}
} // namespace
} // namespace ec