-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b4280f1
commit 9753df6
Showing
4 changed files
with
37 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,32 @@ | ||
# Copyright (c) 2023-2024 tracetronic GmbH | ||
# | ||
# SPDX-License-Identifier: MIT | ||
|
||
""" | ||
This module provides essential imports for the testguide_report_generator package. | ||
""" | ||
|
||
from .ReportGenerator import Generator | ||
from .model.TestSuite import TestSuite | ||
from .model.TestCase import TestCase, TestStep, TestStepFolder, Verdict, Parameter, \ | ||
Direction, Review, TestStepArtifactType, Artifact, TestStepArtifact, Attribute | ||
from .model.TestCaseFolder import TestCaseFolder | ||
from .util.JsonValidator import JsonValidator | ||
|
||
__all__ = [ | ||
"Generator", | ||
"TestSuite", | ||
"TestCase", | ||
"TestStep", | ||
"TestStepFolder", | ||
"Verdict", | ||
"Parameter", | ||
"Direction", | ||
"Review", | ||
"TestStepArtifactType", | ||
"Artifact", | ||
"TestStepArtifact", | ||
"Attribute", | ||
"TestCaseFolder", | ||
"JsonValidator" | ||
] |