chromium/third_party/angle/src/tests/preprocessor_tests/input_test.cpp

//
// 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 "compiler/preprocessor/Input.h"
#include "PreprocessorTest.h"
#include "compiler/preprocessor/Token.h"

namespace angle
{

class InitTest : public PreprocessorTest
{};

TEST_F(InitTest, ZeroCount)
{}

TEST_F(InitTest, NullString)
{}

TEST(InputTest, DefaultConstructor)
{}

TEST(InputTest, NullLength)
{}

TEST(InputTest, NegativeLength)
{}

TEST(InputTest, ActualLength)
{}

TEST(InputTest, String)
{}

TEST(InputTest, ReadSingleString)
{}

TEST(InputTest, ReadMultipleStrings)
{}

TEST(InputTest, ReadStringsWithLength)
{}

TEST(InputTest, ReadStringsWithLineContinuation)
{}

}  // namespace angle