// Copyright 2013 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/signed_certificate_timestamp.h" #include <string> #include "base/pickle.h" #include "net/test/ct_test_util.h" #include "testing/gtest/include/gtest/gtest.h" namespace net::ct { namespace { const char kLogDescription[] = …; class SignedCertificateTimestampTest : public ::testing::Test { … }; TEST_F(SignedCertificateTimestampTest, PicklesAndUnpickles) { … } TEST_F(SignedCertificateTimestampTest, SCTsWithDifferentOriginsNotEqual) { … } } // namespace } // namespace net::ct