diff options
author | Jose <jose@zeroc.com> | 2018-12-20 12:56:13 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2018-12-20 12:56:42 +0100 |
commit | 017c304ad07fd2e8939c77d5c7f788bcace54268 (patch) | |
tree | d7aca5a957aa5cd09b16cf7ea433614cb292881e /csharp/test/TestCommon/TestHelper.cs | |
parent | Improve global metadata code style, Close #321 (diff) | |
download | ice-017c304ad07fd2e8939c77d5c7f788bcace54268.tar.bz2 ice-017c304ad07fd2e8939c77d5c7f788bcace54268.tar.xz ice-017c304ad07fd2e8939c77d5c7f788bcace54268.zip |
Simplify C# ControllerHelper interface
Diffstat (limited to 'csharp/test/TestCommon/TestHelper.cs')
-rw-r--r-- | csharp/test/TestCommon/TestHelper.cs | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/csharp/test/TestCommon/TestHelper.cs b/csharp/test/TestCommon/TestHelper.cs index 5b40b3e3d8e..b966ada4a4e 100644 --- a/csharp/test/TestCommon/TestHelper.cs +++ b/csharp/test/TestCommon/TestHelper.cs @@ -13,16 +13,7 @@ namespace Test { public interface ControllerHelper { - string getOutput(); - void join(); - void completed(int status); - void run(); - string loggerPrefix(); - void print(string message); void serverReady(); - void shutdown(); - void waitReady(int msec); - int waitSuccess(int msec); void communicatorInitialized(Ice.Communicator communicator); } |