summaryrefslogtreecommitdiff
path: root/project2/ice/unittests/unittest.ice
diff options
context:
space:
mode:
authorDan Goodliffe <randomdan@riogrande.random.lan>2014-11-23 00:58:45 +0000
committerDan Goodliffe <randomdan@riogrande.random.lan>2014-11-23 00:58:45 +0000
commitcf54d7d9d6122a13b20fd1a7fc21014bbd3424b8 (patch)
tree13fd0f388d5dbaaf2670a0bd8b788381918667a8 /project2/ice/unittests/unittest.ice
parentRenamed things to avoid conflicts of names (diff)
downloadproject2-cf54d7d9d6122a13b20fd1a7fc21014bbd3424b8.tar.bz2
project2-cf54d7d9d6122a13b20fd1a7fc21014bbd3424b8.tar.xz
project2-cf54d7d9d6122a13b20fd1a7fc21014bbd3424b8.zip
Switched to slicer internals, added more tests
Diffstat (limited to 'project2/ice/unittests/unittest.ice')
-rw-r--r--project2/ice/unittests/unittest.ice21
1 files changed, 17 insertions, 4 deletions
diff --git a/project2/ice/unittests/unittest.ice b/project2/ice/unittests/unittest.ice
index 3c18999..60e44bb 100644
--- a/project2/ice/unittests/unittest.ice
+++ b/project2/ice/unittests/unittest.ice
@@ -1,9 +1,22 @@
-module test {
- interface a
+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();
-
+ void SomeTask();
+ ["project2:task"]
+ void SomeTaskParams(int a, string b);
};
};