Ver código fonte

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

legacy
Sam Hocevar sam 13 anos atrás
pai
commit
c38732ad97
1 arquivos alterados com 4 adições e 2 exclusões
  1. +4
    -2
      src/lol/unit.h

+ 4
- 2
src/lol/unit.h Ver arquivo

@@ -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(); \


Carregando…
Cancelar
Salvar