mirror of
https://github.com/httprunner/httprunner.git
synced 2026-06-11 10:49:43 +08:00
change: rename schema model name and class name
This commit is contained in:
@@ -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 TestCaseValidateWithVariables(unittest.TestCase):
|
||||
config = TestsConfig(
|
||||
config = TConfig(
|
||||
**{
|
||||
"name": "request methods testcase: validate with variables",
|
||||
"variables": {"foo1": "session_bar1"},
|
||||
@@ -17,7 +17,7 @@ class TestCaseValidateWithVariables(unittest.TestCase):
|
||||
)
|
||||
|
||||
teststeps = [
|
||||
TestStep(
|
||||
TStep(
|
||||
**{
|
||||
"name": "get with params",
|
||||
"variables": {"foo1": "bar1", "foo2": "session_bar2"},
|
||||
@@ -35,7 +35,7 @@ class TestCaseValidateWithVariables(unittest.TestCase):
|
||||
],
|
||||
}
|
||||
),
|
||||
TestStep(
|
||||
TStep(
|
||||
**{
|
||||
"name": "post raw text",
|
||||
"variables": {"foo1": "hello world", "foo3": "$session_foo2"},
|
||||
@@ -59,7 +59,7 @@ class TestCaseValidateWithVariables(unittest.TestCase):
|
||||
],
|
||||
}
|
||||
),
|
||||
TestStep(
|
||||
TStep(
|
||||
**{
|
||||
"name": "post form data",
|
||||
"variables": {"foo1": "bar1", "foo2": "bar2"},
|
||||
@@ -82,4 +82,4 @@ class TestCaseValidateWithVariables(unittest.TestCase):
|
||||
]
|
||||
|
||||
def test_start(self):
|
||||
TestCaseRunner(self.config, self.teststeps).run()
|
||||
HttpRunner(self.config, self.teststeps).run()
|
||||
|
||||
Reference in New Issue
Block a user