// 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 "util/serial_delete_ptr.h" #include "gtest/gtest.h" #include "platform/test/fake_clock.h" #include "platform/test/fake_task_runner.h" namespace openscreen { class SerialDeletePtrTest : public ::testing::Test { … }; TEST_F(SerialDeletePtrTest, Empty) { … } TEST_F(SerialDeletePtrTest, Nullptr) { … } TEST_F(SerialDeletePtrTest, DefaultDeleter) { … } } // namespace openscreen