This website works better with JavaScript.
Home
Help
Sign In
lolengine
/
lol
mirror of
https://github.com/lolengine/lol
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
0
Wiki
Activity
Browse Source
lolunit: rename test runner’s run() method to Run() for consistency.
legacy
Sam Hocevar
sam
13 years ago
parent
8fba1a07d7
commit
75d8811c74
2 changed files
with
2 additions
and
2 deletions
Split View
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
View File
@@ -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
View File
@@ -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…
Cancel
Save