diff options
author | Caolán McNamara <cmc@openoffice.org> | 2009-10-12 09:26:03 +0000 |
---|---|---|
committer | Caolán McNamara <cmc@openoffice.org> | 2009-10-12 09:26:03 +0000 |
commit | f98b1af577cb875edd04ef02f6ed08454b451eba (patch) | |
tree | 9402fe7170d9c7d82850d686c7a60a10b5b3b998 /testtools | |
parent | f37b1b41a8bc249aabb44ac474452c590fcc68b2 (diff) |
#i105680# add c# tests
Diffstat (limited to 'testtools')
-rw-r--r-- | testtools/source/bridgetest/cli/cli_cs_testobj.cs | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/testtools/source/bridgetest/cli/cli_cs_testobj.cs b/testtools/source/bridgetest/cli/cli_cs_testobj.cs index 5cff3c9d53a9..2f1c9dde78f6 100644 --- a/testtools/source/bridgetest/cli/cli_cs_testobj.cs +++ b/testtools/source/bridgetest/cli/cli_cs_testobj.cs @@ -227,6 +227,26 @@ public class BridgeTestObject : WeakBase, XRecursiveCall, XBridgeTest2 return _testDataElements; } + public SmallStruct echoSmallStruct(/*[in]*/SmallStruct arg) + { + return arg; + } + + public MediumStruct echoMediumStruct(/*[in]*/MediumStruct arg) + { + return arg; + } + + public BigStruct echoBigStruct(/*[in]*/BigStruct arg) + { + return arg; + } + + public AllFloats echoAllFloats(/*[in]*/AllFloats arg) + { + return arg; + } + // Attributes public bool Bool { |