Skip to content
24 changes: 12 additions & 12 deletions conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
Review,
TestCase,
TestStepArtifact,
TestStepArtifactType
TestStepArtifactType,
)
from testguide_report_generator.model.TestCaseFolder import TestCaseFolder
from testguide_report_generator.model.TestSuite import TestSuite
Expand Down Expand Up @@ -145,24 +145,24 @@ def review():

@pytest.fixture
def testcase(
artifact_mock_hash,
teststep,
teststep_2,
teststep_folder,
parameter,
parameter_2,
constant,
constant_2,
attribute,
review,
artifact_mock_hash,
teststep,
teststep_2,
teststep_folder,
parameter,
parameter_2,
constant,
constant_2,
attribute,
review,
):
testcase = TestCase("testcase_one", 1670248341000, Verdict.PASSED)

testcase.set_description("First testcase.")
testcase.set_execution_time_in_sec(5)
testcase.add_parameter_set("myset", [parameter, parameter_2])
testcase.add_constants([constant, constant_2])
testcase.add_constant(Constant("", ""))
testcase.add_constant(Constant("key", "value"))
testcase.add_constant_pair("const_key", "const_val")
testcase.add_attribute_pair("an", "attribute")
testcase.add_setup_teststep(teststep)
Expand Down
Loading