refactor: use HttpRunner as testcase base class

This commit is contained in:
debugtalk
2020-05-15 20:05:17 +08:00
parent 80a600bccc
commit 2cd9eba6a3
12 changed files with 71 additions and 363 deletions

View File

@@ -1,7 +1,6 @@
__version__ = "3.0.2"
__description__ = "One-stop solution for HTTP(S) testing."
from unittest import TestCase
from httprunner.runner import HttpRunner
from httprunner.schema import TConfig, TStep
@@ -11,5 +10,4 @@ __all__ = [
"HttpRunner",
"TConfig",
"TStep",
"TestCase",
]