本文整理汇总了C++中Error::GetPosition方法的典型用法代码示例。如果您正苦于以下问题:C++ Error::GetPosition方法的具体用法?C++ Error::GetPosition怎么用?C++ Error::GetPosition使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Error
的用法示例。
在下文中一共展示了Error::GetPosition方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: Lexema
TEST(Corrector, can_pass_correct_word) {
Lexema *word = new Lexema[6];
word[0] = Lexema(Type_Lexems::open_bracet, "(", 0);
word[1] = Lexema(Type_Lexems::digit, "1", 1);
word[2] = Lexema(Type_Lexems::add, "+", 2);
word[3] = Lexema(Type_Lexems::digit, "2", 3);
word[4] = Lexema(Type_Lexems::close_bracket, ")", 4);
word[5] = Lexema(Type_Lexems::terminal, "", 5);
Corrector c;
Stack<Error>* errors;
Error res;
errors = c.CheckExpression(word);
if (errors->IsEmpty())
{
res = Error(-2, "Ура, ошибок нет!");
}
else
{
res = errors->Put();
}
EXPECT_EQ(-2, res.GetPosition());
EXPECT_EQ("Ура, ошибок нет!", res.GetText());
}