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

Unified Diff: chrome/renderer/extensions/json_schema_unittest.cc

Issue 9317072: Allow omitting optional parameters for Extensions API functions (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: null and undefined arguments now handled. Comments added and variables renamed. Created 8 years, 10 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
Index: chrome/renderer/extensions/json_schema_unittest.cc
diff --git a/chrome/renderer/extensions/json_schema_unittest.cc b/chrome/renderer/extensions/json_schema_unittest.cc
index 8e3c98ba7defcf73c8bd5840c35ffd91219634af..72ca0d3edf2a1fab6071c585570086002ca66aac 100644
--- a/chrome/renderer/extensions/json_schema_unittest.cc
+++ b/chrome/renderer/extensions/json_schema_unittest.cc
@@ -94,3 +94,15 @@ TEST_F(JsonSchemaTest, TestType) {
TEST_F(JsonSchemaTest, TestTypeReference) {
TestFunction("testTypeReference");
}
+
+TEST_F(JsonSchemaTest, TestGetAllTypesForSchema) {
+ TestFunction("testGetAllTypesForSchema");
+}
+
+TEST_F(JsonSchemaTest, TestIsValidSchemaType) {
+ TestFunction("testIsValidSchemaType");
+}
+
+TEST_F(JsonSchemaTest, TestCheckSchemaOverlap) {
+ TestFunction("testCheckSchemaOverlap");
+}

Powered by Google App Engine
This is Rietveld 408576698