瀏覽代碼

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…
取消
儲存