summaryrefslogtreecommitdiff
path: root/project2/ice/unittests/unittest.ice
diff options
context:
space:
mode:
authorDan Goodliffe <randomdan@akira.random.lan>2014-11-29 14:27:05 +0000
committerDan Goodliffe <randomdan@akira.random.lan>2014-11-29 14:27:05 +0000
commit02b3b9655a273aee62bf50f592919e3f6b2f4e2b (patch)
tree418c9d94b9b57d71ccb99949d14a6233d169d70a /project2/ice/unittests/unittest.ice
parentRename library test to conform with others (diff)
parentUnit tests for daemon and fixes for highlighted issues (diff)
downloadproject2-02b3b9655a273aee62bf50f592919e3f6b2f4e2b.tar.bz2
project2-02b3b9655a273aee62bf50f592919e3f6b2f4e2b.tar.xz
project2-02b3b9655a273aee62bf50f592919e3f6b2f4e2b.zip
Merge remote-tracking branch 'origin/slicer'
Diffstat (limited to 'project2/ice/unittests/unittest.ice')
-rw-r--r--project2/ice/unittests/unittest.ice22
1 files changed, 22 insertions, 0 deletions
diff --git a/project2/ice/unittests/unittest.ice b/project2/ice/unittests/unittest.ice
new file mode 100644
index 0000000..60e44bb
--- /dev/null
+++ b/project2/ice/unittests/unittest.ice
@@ -0,0 +1,22 @@
+module UnitTest {
+ ["project2:type"]
+ class Simple {
+ int a;
+ string b;
+ };
+
+ sequence<Simple> Simples;
+
+ interface SimpleInterface
+ {
+ ["project2:rows"]
+ Simples SomeRows();
+ ["project2:rows"]
+ Simples SomeRowsParams(int a, string b);
+ ["project2:task"]
+ void SomeTask();
+ ["project2:task"]
+ void SomeTaskParams(int a, string b);
+ };
+};
+