#include "third_party/blink/renderer/controller/performance_manager/v8_worker_memory_reporter.h"
#include "base/time/time.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/public/common/tokens/tokens.h"
#include "third_party/blink/renderer/core/testing/sim/sim_request.h"
#include "third_party/blink/renderer/core/testing/sim/sim_test.h"
#include "third_party/blink/renderer/core/workers/dedicated_worker_test.h"
#include "third_party/blink/renderer/core/workers/worker_thread.h"
#include "third_party/blink/renderer/platform/testing/unit_test_helpers.h"
#include "third_party/blink/renderer/platform/wtf/functional.h"
#include "third_party/blink/renderer/platform/wtf/text/wtf_string.h"
namespace blink {
class V8WorkerMemoryReporterTest : public ::testing::Test { … };
class V8WorkerMemoryReporterTestWithDedicatedWorker
: public DedicatedWorkerTest { … };
class V8WorkerMemoryReporterTestWithMockPlatform
: public V8WorkerMemoryReporterTestWithDedicatedWorker { … };
class MockCallback { … };
bool operator==(const V8WorkerMemoryReporter::WorkerMemoryUsage& lhs,
const V8WorkerMemoryReporter::WorkerMemoryUsage& rhs) { … }
bool operator==(const V8WorkerMemoryReporter::Result& lhs,
const V8WorkerMemoryReporter::Result& rhs) { … }
class MemoryUsageChecker { … };
TEST_F(V8WorkerMemoryReporterTest, OnMeasurementSuccess) { … }
TEST_F(V8WorkerMemoryReporterTest, OnMeasurementFailure) { … }
TEST_F(V8WorkerMemoryReporterTest, OnTimeout) { … }
TEST_F(V8WorkerMemoryReporterTest, OnTimeoutNoop) { … }
TEST_F(V8WorkerMemoryReporterTestWithDedicatedWorker, GetMemoryUsage) { … }
TEST_F(V8WorkerMemoryReporterTestWithMockPlatform, GetMemoryUsageTimeout) { … }
}