// // 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 ErrorTest : public SimplePreprocessorTest { … }; TEST_F(ErrorTest, Empty) { … } TEST_F(ErrorTest, OneTokenMessage) { … } TEST_F(ErrorTest, TwoTokenMessage) { … } TEST_F(ErrorTest, Comments) { … } TEST_F(ErrorTest, MissingNewline) { … } } // namespace angle