Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1340)

Unified Diff: base/environment_unittest.cc

Issue 3035050: base: rename Environment::HasEnv to Environment::HasVar. (Closed) Base URL: git://git.chromium.org/chromium.git
Patch Set: Created 10 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « base/environment.cc ('k') | base/nss_util.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/environment_unittest.cc
diff --git a/base/environment_unittest.cc b/base/environment_unittest.cc
index f37b6827316a8184184a898cc6c148268ce4ce2a..302a0d0f59347450603541904ab7804172f17735 100644
--- a/base/environment_unittest.cc
+++ b/base/environment_unittest.cc
@@ -17,10 +17,10 @@ TEST_F(EnvironmentTest, GetEnvVar) {
EXPECT_NE(env_value, "");
}
-TEST_F(EnvironmentTest, HasEnvVar) {
+TEST_F(EnvironmentTest, HasVar) {
// Every setup should have PATH...
scoped_ptr<base::Environment> env(base::Environment::Create());
- EXPECT_TRUE(env->HasEnv("PATH"));
+ EXPECT_TRUE(env->HasVar("PATH"));
}
TEST_F(EnvironmentTest, SetEnvVar) {
@@ -31,7 +31,7 @@ TEST_F(EnvironmentTest, SetEnvVar) {
EXPECT_TRUE(env->SetEnv(kFooUpper, kFooLower));
// Now verify that the environment has the new variable.
- EXPECT_TRUE(env->HasEnv(kFooUpper));
+ EXPECT_TRUE(env->HasVar(kFooUpper));
std::string var_value;
EXPECT_TRUE(env->GetEnv(kFooUpper, &var_value));
@@ -47,11 +47,11 @@ TEST_F(EnvironmentTest, UnSetVar) {
EXPECT_TRUE(env->SetEnv(kFooUpper, kFooLower));
// Now verify that the environment has the new variable.
- EXPECT_TRUE(env->HasEnv(kFooUpper));
+ EXPECT_TRUE(env->HasVar(kFooUpper));
// Finally verify that the environment variable was erased.
EXPECT_TRUE(env->UnSetVar(kFooUpper));
// And check that the variable has been unset.
- EXPECT_FALSE(env->HasEnv(kFooUpper));
+ EXPECT_FALSE(env->HasVar(kFooUpper));
}
« no previous file with comments | « base/environment.cc ('k') | base/nss_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698