blob: 694bc181d385865e78618e4899c316f7866b2d35 [file] [log] [blame]
// Copyright 2022 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef IPCZ_SRC_TEST_TEST_H_
#define IPCZ_SRC_TEST_TEST_H_
#include "test/test_base.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace ipcz::test {
// Base class for ipcz unit tests.
class Test : public internal::TestBase, public ::testing::Test {};
} // namespace ipcz::test
#endif // IPCZ_SRC_TEST_TEST_H_