summaryrefslogtreecommitdiff
path: root/matlab/test/Ice/defaultValue/Client.m
diff options
context:
space:
mode:
Diffstat (limited to 'matlab/test/Ice/defaultValue/Client.m')
-rw-r--r--matlab/test/Ice/defaultValue/Client.m29
1 files changed, 29 insertions, 0 deletions
diff --git a/matlab/test/Ice/defaultValue/Client.m b/matlab/test/Ice/defaultValue/Client.m
new file mode 100644
index 00000000000..98e0a2e29cc
--- /dev/null
+++ b/matlab/test/Ice/defaultValue/Client.m
@@ -0,0 +1,29 @@
+%{
+**********************************************************************
+
+Copyright (c) 2003-2017 ZeroC, Inc. All rights reserved.
+
+This copy of Ice is licensed to you under the terms described in the
+ICE_LICENSE file included in this distribution.
+
+**********************************************************************
+%}
+
+classdef Client < Application
+ methods
+ function r = run(obj, args)
+ AllTests.allTests(obj);
+ r = 0;
+ end
+ end
+ methods(Static)
+ function status = start(args)
+ addpath('generated');
+ if ~libisloaded('icematlab')
+ loadlibrary('icematlab')
+ end
+ c = Client();
+ status = c.main('Client', args);
+ end
+ end
+end