diff options
Diffstat (limited to 'icespider/unittests/test-api.ice')
-rw-r--r-- | icespider/unittests/test-api.ice | 13 |
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); + }; +}; + |