blob: 22880bb6b8070cbc36b887d8a87633ecbcffdcbe [file] [log] [blame]
// Copyright 2018 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.
// Useful utilities for testing streams.
#ifndef THIRD_PARTY_BLINK_RENDERER_CORE_STREAMS_TEST_UTILS_H_
#define THIRD_PARTY_BLINK_RENDERER_CORE_STREAMS_TEST_UTILS_H_
namespace blink {
class ScriptValue;
class V8TestingScope;
// Evaluate the Javascript in "script" and return the result, failing the test
// if an exception is thrown.
ScriptValue EvalWithPrintingError(V8TestingScope*, const char* script);
} // namespace blink
#endif // THIRD_PARTY_BLINK_RENDERER_CORE_STREAMS_TEST_UTILS_H_