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

Unified Diff: mojo/edk/js/test/run_js_integration_tests.cc

Issue 2549683002: Mojo JS bindings: introduce concepts that are more similar to C++ bindings: (Closed)
Patch Set: put interface control methods in the |ptr| property Created 4 years 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 | « no previous file | mojo/edk/js/tests/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/edk/js/test/run_js_integration_tests.cc
diff --git a/mojo/edk/js/test/run_js_integration_tests.cc b/mojo/edk/js/test/run_js_integration_tests.cc
index 00d3e96d368144c36c72d9172c45980bd4f6376b..f3eb936f3fbf8d09bc38a1ca9f0fbf03f83aba54 100644
--- a/mojo/edk/js/test/run_js_integration_tests.cc
+++ b/mojo/edk/js/test/run_js_integration_tests.cc
@@ -45,14 +45,22 @@ void RunTest(std::string test) {
gin::RunTestFromFile(path, &delegate, false);
}
-TEST(JSTest, connection) {
+TEST(JSTest, Connection) {
RunTest("connection_tests.js");
}
-TEST(JSTest, sample_service) {
+TEST(JSTest, SampleService) {
RunTest("sample_service_tests.js");
}
+TEST(JSTest, InterfacePtr) {
+ RunTest("interface_ptr_tests.js");
+}
+
+TEST(JSTest, Binding) {
+ RunTest("binding_tests.js");
+}
+
} // namespace
} // namespace js
} // namespace edk
« no previous file with comments | « no previous file | mojo/edk/js/tests/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698