本網站在啟用 JavaScript 的情況下可以運作的更好。
首頁
說明
登入
lolengine
/
lol
镜像来自
https://github.com/lolengine/lol
關注
1
收藏
0
複製
0
程式碼
問題
0
版本發佈
0
Wiki
活動
瀏覽代碼
lolunit: rename test runner’s run() method to Run() for consistency.
legacy
Sam Hocevar
sam
14 年之前
父節點
8fba1a07d7
當前提交
75d8811c74
共有
2 個檔案被更改
,包括
2 行新增
和
2 行删除
分割檢視
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
src/lol/unit.h
+1
-1
test/lol-test.cpp
+ 1
- 1
src/lol/unit.h
查看文件
@@ -174,7 +174,7 @@ public:
class TextTestRunner
{
public:
bool
r
un()
bool
R
un()
{
bool ret = true;
std::stringstream errors("");
+ 1
- 1
test/lol-test.cpp
查看文件
@@ -20,7 +20,7 @@
int main(void)
{
lol::TextTestRunner runner;
bool success = runner.
r
un();
bool success = runner.
R
un();
return success ? EXIT_SUCCESS : EXIT_FAILURE;
}
Write
Preview
Loading…
取消
儲存