From ca76d111a640c4818d702f69632b059b0fc1f276 Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Sun, 23 Nov 2014 00:58:45 +0000 Subject: Switched to slicer internals, added more tests --- project2/ice/unittests/unittest.ice | 21 +++++++++++++++++---- 1 file changed, 17 insertions(+), 4 deletions(-) (limited to 'project2/ice/unittests/unittest.ice') 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 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); }; }; -- cgit v1.2.3