Chromium Code Reviews| 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 |