소스 검색

lolunit: rename test runner’s run() method to Run() for consistency.

legacy
Sam Hocevar sam 14 년 전
부모
커밋
75d8811c74
2개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. +1
    -1
      src/lol/unit.h
  2. +1
    -1
      test/lol-test.cpp

+ 1
- 1
src/lol/unit.h 파일 보기

@@ -174,7 +174,7 @@ public:
class TextTestRunner class TextTestRunner
{ {
public: public:
bool run()
bool Run()
{ {
bool ret = true; bool ret = true;
std::stringstream errors(""); std::stringstream errors("");


+ 1
- 1
test/lol-test.cpp 파일 보기

@@ -20,7 +20,7 @@
int main(void) int main(void)
{ {
lol::TextTestRunner runner; lol::TextTestRunner runner;
bool success = runner.run();
bool success = runner.Run();
return success ? EXIT_SUCCESS : EXIT_FAILURE; return success ? EXIT_SUCCESS : EXIT_FAILURE;
} }



불러오는 중...
취소
저장