// Copyright 2016 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "net/cert/merkle_audit_proof.h" #include "base/check.h" #include "testing/gmock/include/gmock/gmock.h" #include "testing/gtest/include/gtest/gtest.h" namespace net::ct { namespace { TEST(MerkleAuditProofTest, CalculatesAuditPathLengthCorrectly) { … } TEST(MerkleAuditProofDeathTest, DiesIfLeafIndexIsGreaterThanOrEqualToTreeSize) { … } } // namespace } // namespace net::ct