chromium/v8/test/unittests/profiler/strings-storage-unittest.cc

// Copyright 2018 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "src/profiler/strings-storage.h"

#include <cstdio>

#include "test/unittests/test-utils.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace v8 {
namespace internal {

using StringsStorageWithIsolate = TestWithIsolate;

bool StringEq(const char* left, const char* right) {}

TEST_F(StringsStorageWithIsolate, GetNameFromString) {}

TEST_F(StringsStorageWithIsolate, GetNameFromSymbol) {}

TEST_F(StringsStorageWithIsolate, GetConsName) {}

TEST_F(StringsStorageWithIsolate, GetNameFromInt) {}

TEST_F(StringsStorageWithIsolate, Format) {}

TEST_F(StringsStorageWithIsolate, FormatAndGetShareStorage) {}

TEST_F(StringsStorageWithIsolate, Refcounting) {}

TEST_F(StringsStorageWithIsolate, InvalidRelease) {}

TEST_F(StringsStorageWithIsolate, CopyAndConsShareStorage) {}

}  // namespace internal
}  // namespace v8