From e4ba01c27b77c3c1c6aeceb0edc31556c2f2f646 Mon Sep 17 00:00:00 2001 From: MangosArentLiterature <58055358+MangosArentLiterature@users.noreply.github.com> Date: Thu, 3 Jun 2021 16:48:25 -0500 Subject: [PATCH] Fix area test Co-Authored-By: Cerapter <43446478+Cerapter@users.noreply.github.com> --- tests/unittest_area/tst_unittest_area.cpp | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/tests/unittest_area/tst_unittest_area.cpp b/tests/unittest_area/tst_unittest_area.cpp index 6c2f316..7b0fbe4 100644 --- a/tests/unittest_area/tst_unittest_area.cpp +++ b/tests/unittest_area/tst_unittest_area.cpp @@ -206,6 +206,7 @@ void Area::testimony() {"B"}, {"C"}, {"D"}, + {"E"}, }; { @@ -218,10 +219,10 @@ void Area::testimony() } } { - // Restart testimony, advance three times. - m_area->restartTestimony(); + // Restart testimony, advance two times. + m_area->jumpToStatement(1); - for (int i = 0; i < l_testimony.size() - 1; i++) { + for (int i = 1; i < l_testimony.size() - 1; i++) { const auto& l_results = m_area->jumpToStatement(m_area->statement() + 1); QCOMPARE(l_results.first, l_testimony.at(i + 1)); @@ -232,14 +233,14 @@ void Area::testimony() // Next advancement loops the testimony. const auto& l_results = m_area->jumpToStatement(m_area->statement() + 1); - QCOMPARE(l_results.first, l_testimony.at(0)); + QCOMPARE(l_results.first, l_testimony.at(1)); QCOMPARE(l_results.second, AreaData::TestimonyProgress::LOOPED); } { // Going back makes the testimony stay at the first statement. const auto& l_results = m_area->jumpToStatement(m_area->statement() - 1); - QCOMPARE(l_results.first, l_testimony.at(0)); + QCOMPARE(l_results.first, l_testimony.at(1)); QCOMPARE(l_results.second, AreaData::TestimonyProgress::STAYED_AT_FIRST); } }