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

Unified Diff: mojo/go/tests/application_impl_test.go

Issue 1435153003: Add an ApplicationConnector interface, etc. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: grrr Created 5 years, 1 month 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/public/cpp/application/application_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/go/tests/application_impl_test.go
diff --git a/mojo/go/tests/application_impl_test.go b/mojo/go/tests/application_impl_test.go
index b28c95f2d109f45c11be66f33725703ac33a19ff..3acd2f0d0471a473b1e9732177c01ab126e59a5d 100644
--- a/mojo/go/tests/application_impl_test.go
+++ b/mojo/go/tests/application_impl_test.go
@@ -14,6 +14,7 @@ import (
"examples/echo/echo"
mojoApp "mojo/public/interfaces/application/application"
+ ac "mojo/public/interfaces/application/application_connector"
sp "mojo/public/interfaces/application/service_provider"
"mojo/public/interfaces/application/shell"
)
@@ -120,6 +121,11 @@ func (s *shellImpl) ConnectToApplication(URL string, services *sp.ServiceProvide
return nil
}
+func (s *shellImpl) CreateApplicationConnector(applicationConnectorRequest ac.ApplicationConnector_Request) error {
+ // TODO(vtl)
jamesr 2015/11/13 21:51:20 file a bug?
+ panic("not implemented")
+}
+
func TestApplication(t *testing.T) {
var apps []*mojoApp.Application_Proxy
var responsesSent, appsTerminated sync.WaitGroup
« no previous file with comments | « no previous file | mojo/public/cpp/application/application_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698