Upload the contribution of vstf as bottleneck network framework.
[bottlenecks.git] / vstf / vstf / common / test_func.py
1 from vstf.common import cliutil as util
2
3
4 @util.arg("--test",
5           dest="test",
6           default="",
7           help="a params of test-xx")
8 @util.arg("--xx",
9           dest="xx",
10           default="",
11           help="a params of test-xx")
12 def do_test_xx(args):
13     """this is a help doc"""
14     print "run test01 " + args.test + args.xx