mirror of
https://github.com/httprunner/httprunner.git
synced 2026-05-17 06:47:36 +08:00
(1) testcase: session variables > step variables > config variables (2) testsuite: testcase variables > config variables (3) testsuite testcase variables > testcase config variables
16 lines
332 B
Python
16 lines
332 B
Python
__version__ = "3.0.11"
|
|
__description__ = "One-stop solution for HTTP(S) testing."
|
|
|
|
from httprunner.runner import HttpRunner
|
|
from httprunner.testcase import Config, Step, RunRequest, RunTestCase
|
|
|
|
__all__ = [
|
|
"__version__",
|
|
"__description__",
|
|
"HttpRunner",
|
|
"Config",
|
|
"Step",
|
|
"RunRequest",
|
|
"RunTestCase",
|
|
]
|