summaryrefslogtreecommitdiff
path: root/icespider/unittests/test-api.ice
diff options
context:
space:
mode:
Diffstat (limited to 'icespider/unittests/test-api.ice')
-rw-r--r--icespider/unittests/test-api.ice13
1 files changed, 13 insertions, 0 deletions
diff --git a/icespider/unittests/test-api.ice b/icespider/unittests/test-api.ice
new file mode 100644
index 0000000..4fc87bd
--- /dev/null
+++ b/icespider/unittests/test-api.ice
@@ -0,0 +1,13 @@
+module TestIceSpider {
+ class SomeModel {
+ string value;
+ };
+
+ interface TestApi {
+ SomeModel index();
+ SomeModel withParams(string s, int i);
+ void returnNothing(string s);
+ void complexParam(string s, SomeModel m);
+ };
+};
+