// Copyright 2019 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 <cstring> #include <initializer_list> #include <limits> #include "src/base/vlq-base64.h" #include "testing/gtest-support.h" namespace v8 { namespace base { TEST(VLQBASE64, charToDigit) { … } struct ExpectedVLQBase64Result { … }; void TestVLQBase64Decode( const char* str, std::initializer_list<ExpectedVLQBase64Result> expected_results) { … } TEST(VLQBASE64, DecodeOneSegment) { … } TEST(VLQBASE64, DecodeTwoSegment) { … } TEST(VLQBASE64, DecodeFourSegment) { … } } // namespace base } // namespace v8