diff options
| author | Dan Goodliffe <randomdan@akira.random.lan> | 2014-11-29 14:27:05 +0000 |
|---|---|---|
| committer | Dan Goodliffe <randomdan@akira.random.lan> | 2014-11-29 14:27:05 +0000 |
| commit | 02b3b9655a273aee62bf50f592919e3f6b2f4e2b (patch) | |
| tree | 418c9d94b9b57d71ccb99949d14a6233d169d70a /project2/ice/unittests/unittest.ice | |
| parent | Rename library test to conform with others (diff) | |
| parent | Unit tests for daemon and fixes for highlighted issues (diff) | |
| download | project2-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.ice | 22 |
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); + }; +}; + |
