summaryrefslogtreecommitdiff
path: root/test/StressTest.thrift
diff options
context:
space:
mode:
authorMark Slee <mcslee@apache.org>2006-08-30 17:23:52 +0000
committerMark Slee <mcslee@apache.org>2006-08-30 17:23:52 +0000
commit632f323f6cad820d622ebfbea4ab3ed54966d2d5 (patch)
treeaf571eedd788ad0bbad0db4e831e71f52b095b6b /test/StressTest.thrift
parent6e1555f36e67eb6d5624ec6b2e0c6a5f23e06696 (diff)
downloadthrift-632f323f6cad820d622ebfbea4ab3ed54966d2d5.tar.gz
Move Thrift StressTest code into test top-level folder
git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@664770 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test/StressTest.thrift')
-rw-r--r--test/StressTest.thrift18
1 files changed, 18 insertions, 0 deletions
diff --git a/test/StressTest.thrift b/test/StressTest.thrift
new file mode 100644
index 000000000..a1f909c2b
--- /dev/null
+++ b/test/StressTest.thrift
@@ -0,0 +1,18 @@
+namespace test.stress
+
+service Service {
+
+ void echoVoid(),
+ byte echoByte(byte arg),
+ u16 echoU16(u16 arg),
+ u32 echoU32(u32 arg),
+ u64 echoU64(u64 arg),
+ i16 echoI16(i16 arg),
+ i32 echoI32(i32 arg),
+ i64 echoI64(i64 arg),
+ string echoString(string arg),
+ list<byte> echoList(list<byte> arg),
+ set<byte> echoSet(set<byte> arg),
+ map<byte, byte> echoMap(map<byte, byte> arg),
+}
+