refactor: parameters

This commit is contained in:
debugtalk
2020-07-06 15:23:35 +08:00
parent b39a806159
commit 0fc42f77cd
17 changed files with 130 additions and 178 deletions

View File

@@ -4,6 +4,7 @@ from httprunner import __version__
def get_httprunner_version():
return __version__
def sum_two(m, n):
return m + n
@@ -18,3 +19,7 @@ def get_testsuite_config_variables():
def get_app_version():
return [3.1, 3.0]
def calculate_two_nums(a, b=1):
return [a + b, b - a]