// // Copyright 2012 The ANGLE 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 "PreprocessorTest.h" #include "compiler/preprocessor/Token.h" namespace angle { class CommentTest : public SimplePreprocessorTest, public testing::WithParamInterface<const char *> { … }; TEST_P(CommentTest, CommentIgnored) { … } INSTANTIATE_TEST_SUITE_P(…); // Invalid character. INSTANTIATE_TEST_SUITE_P(…); // Invalid character. class BlockCommentTest : public SimplePreprocessorTest { … }; TEST_F(BlockCommentTest, CommentReplacedWithSpace) { … } TEST_F(BlockCommentTest, UnterminatedComment) { … } } // namespace angle