aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHerbert Thielen <thielen@hs-worms.de>2017-08-14 18:07:55 +0200
committerHerbert Thielen <thielen@hs-worms.de>2017-08-29 14:22:09 +0200
commitdaaed2b6cb7ba4165636a7de20a691e4e78a7d38 (patch)
tree7ae1d54664a06db6847f3ff7896f28a779828f24
parentb43bfcf49166599955ba3713952bc6c0e96b421b (diff)
downloadgoogletest-daaed2b6cb7ba4165636a7de20a691e4e78a7d38.tar.gz
googletest-daaed2b6cb7ba4165636a7de20a691e4e78a7d38.tar.bz2
googletest-daaed2b6cb7ba4165636a7de20a691e4e78a7d38.zip
fix typo in comment and string (SetUpTestCase)
-rw-r--r--googletest/test/gtest_unittest.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/googletest/test/gtest_unittest.cc b/googletest/test/gtest_unittest.cc
index 1d3c7c7a..0ae8e035 100644
--- a/googletest/test/gtest_unittest.cc
+++ b/googletest/test/gtest_unittest.cc
@@ -3115,13 +3115,13 @@ TEST(DISABLED_TestCase, DISABLED_TestShouldNotRun) {
FAIL() << "Unexpected failure: Test in disabled test case should not be run.";
}
-// Check that when all tests in a test case are disabled, SetupTestCase() and
+// Check that when all tests in a test case are disabled, SetUpTestCase() and
// TearDownTestCase() are not called.
class DisabledTestsTest : public Test {
protected:
static void SetUpTestCase() {
FAIL() << "Unexpected failure: All tests disabled in test case. "
- "SetupTestCase() should not be called.";
+ "SetUpTestCase() should not be called.";
}
static void TearDownTestCase() {