// Copyright 2019 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include <cstdlib> #include <string> #include "serializable.h" #include "test_platform.h" namespace v8_crdtp { // ============================================================================= // Serializable - An object to be emitted as a sequence of bytes. // ============================================================================= namespace { // Tests ::Serialize (which invokes ::AppendSerialized). class SimpleExample : public Serializable { … }; } // namespace TEST(SerializableTest, YieldsContents) { … } } // namespace v8_crdtp