change: rename schema model name and class name

This commit is contained in:
debugtalk
2020-05-14 23:53:18 +08:00
parent 9a9594b0c1
commit 98f4a8f065
10 changed files with 59 additions and 58 deletions

View File

@@ -1,12 +1,12 @@
# NOTICE: Generated By HttpRunner. DO'NOT EDIT!
import unittest
from httprunner.runner import TestCaseRunner
from httprunner.schema import TestsConfig, TestStep
from httprunner.runner import HttpRunner
from httprunner.schema import TConfig, TStep
class TestCaseRequestWithFunctions(unittest.TestCase):
config = TestsConfig(
config = TConfig(
**{
"name": "request methods testcase with functions",
"variables": {"foo1": "session_bar1"},
@@ -17,7 +17,7 @@ class TestCaseRequestWithFunctions(unittest.TestCase):
)
teststeps = [
TestStep(
TStep(
**{
"name": "get with params",
"variables": {
@@ -40,7 +40,7 @@ class TestCaseRequestWithFunctions(unittest.TestCase):
],
}
),
TestStep(
TStep(
**{
"name": "post raw text",
"variables": {"foo1": "hello world", "foo3": "$session_foo2"},
@@ -64,7 +64,7 @@ class TestCaseRequestWithFunctions(unittest.TestCase):
],
}
),
TestStep(
TStep(
**{
"name": "post form data",
"variables": {"foo1": "bar1", "foo2": "bar2"},
@@ -87,4 +87,4 @@ class TestCaseRequestWithFunctions(unittest.TestCase):
]
def test_start(self):
TestCaseRunner(self.config, self.teststeps).run()
HttpRunner(self.config, self.teststeps).run()