Index: services/dart/test/pingpong_target/main.dart |
diff --git a/services/dart/test/pingpong_target/main.dart b/services/dart/test/pingpong_target/main.dart |
index a91d04022112b579c4f05582826594c4785e18bd..fd12afdc374c68f43d7ff5ca946d70e8ad2884c2 100644 |
--- a/services/dart/test/pingpong_target/main.dart |
+++ b/services/dart/test/pingpong_target/main.dart |
@@ -25,6 +25,15 @@ class PingPongServiceImpl implements PingPongService { |
void ping(int pingValue) => _pingPongClient.ptr.pong(pingValue + 1); |
+ // These methods are unimplemented; they merely throw on invocation. |
+ Future<PingPongServicePingTargetUrlResponseParams> pingTargetUrl( |
+ String url, int count, [Function responseFactory]) => |
+ throw "Unimplemented"; |
+ Future<PingPongServicePingTargetServiceResponseParams> pingTargetService( |
+ Object service, int count, [Function responseFactory]) => |
+ throw "Unimplemented"; |
+ void getPingPongService(Object service) => throw "Unimplemented"; |
+ |
void quit() { |
if (_pingPongClient != null) { |
_pingPongClient.close(); |