Преглед изворни кода

lolunit: tweak output formatting so that it more closely matches CppUnit.

legacy
Sam Hocevar sam пре 13 година
родитељ
комит
c38732ad97
1 измењених фајлова са 4 додато и 2 уклоњено
  1. +4
    -2
      src/lol/unit.h

+ 4
- 2
src/lol/unit.h Прегледај датотеку

@@ -107,8 +107,10 @@ public:
m_failure = false;
m_currentname = c->m_testname;
m_context.str("");

std::cout << '.';
(static_cast<FixtureClass *>(this)->*c->m_fun)();
std::cout << (m_failure ? 'F' : '.');
if (m_failure) std::cout << 'F';
}
}

@@ -252,7 +254,7 @@ public:
m_errorlog << std::setprecision(16); \
m_errorlog << "- Expected: " << #a << " = " << (a) << std::endl; \
m_errorlog << "- Actual : " << #b << " = " << (b) << std::endl; \
m_errorlog << "- Delta : " << #t << " = " << (t) << std::endl; \
m_errorlog << "- Delta : " << (t) << std::endl; \
m_errorlog << std::setprecision(old_prec); \
m_errorlog << message; \
m_errorlog << m_context.str(); \


Loading…
Откажи
Сачувај