Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: test/AppInfoJsObject.cpp

Issue 10862008: Automatically add default filter subscription when necessary. (Closed)
Patch Set: Created May 27, 2013, 2:12 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/JsEngine.cpp ('k') | test/BaseJsTest.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/AppInfoJsObject.cpp
===================================================================
--- a/test/AppInfoJsObject.cpp
+++ b/test/AppInfoJsObject.cpp
@@ -20,14 +20,16 @@
TEST(AppInfoJsObjectTest, AllProperties)
{
AdblockPlus::AppInfo appInfo;
appInfo.id = "1";
appInfo.version = "2";
appInfo.name = "4";
appInfo.platform = "5";
+ appInfo.locale = "3";
AdblockPlus::JsEnginePtr jsEngine(AdblockPlus::JsEngine::New(appInfo));
ASSERT_EQ("1", jsEngine->Evaluate("_appInfo.id")->AsString());
ASSERT_EQ("2", jsEngine->Evaluate("_appInfo.version")->AsString());
ASSERT_EQ("4", jsEngine->Evaluate("_appInfo.name")->AsString());
ASSERT_EQ("5", jsEngine->Evaluate("_appInfo.platform")->AsString());
+ ASSERT_EQ("3", jsEngine->Evaluate("_appInfo.locale")->AsString());
}
« no previous file with comments | « src/JsEngine.cpp ('k') | test/BaseJsTest.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld