// Copyright 2020 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "util/crypto/random_bytes.h" #include <algorithm> #include <utility> #include "gtest/gtest.h" namespace openscreen { namespace { struct NonZero { … }; } // namespace TEST(RandomBytesTest, CanGenerateRandomBytes) { … } TEST(RandomBytesTest, CanGenerate16RandomBytes) { … } TEST(RandomBytesTest, KeysAreNotIdentical) { … } } // namespace openscreen