mirror of
https://github.com/httprunner/httprunner.git
synced 2026-07-13 08:21:49 +08:00
21 lines
512 B
Python
21 lines
512 B
Python
__version__ = "v4.0.0-beta"
|
|
__description__ = "One-stop solution for HTTP(S) testing."
|
|
|
|
from httprunner.config import Config
|
|
from httprunner.parser import parse_parameters as Parameters
|
|
from httprunner.runner import HttpRunner
|
|
from httprunner.step import Step
|
|
from httprunner.step_request import RunRequest
|
|
from httprunner.step_testcase import RunTestCase
|
|
|
|
__all__ = [
|
|
"__version__",
|
|
"__description__",
|
|
"HttpRunner",
|
|
"Config",
|
|
"Step",
|
|
"RunRequest",
|
|
"RunTestCase",
|
|
"Parameters",
|
|
]
|