#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)
{ … }
}