comparison: eric7/Unittest/Interfaces/__init__.py
eric7/Unittest/Interfaces/__init__.py
- branch
- unittest
- changeset 9059
- e7fd342f8bfc
- child 9065
- 39405e6eba20
equal
deleted
inserted
replaced
|
1 # -*- coding: utf-8 -*- |
|
2 |
|
3 # Copyright (c) 2022 Detlev Offenbach <detlev@die-offenbachs.de> |
|
4 # |
|
5 |
|
6 """ |
|
7 Package containg the various test framework interfaces. |
|
8 """ |
|
9 |
|
10 from .PytestExecutor import PytestExecutor |
|
11 from .UnittestExecutor import UnittestExecutor |
|
12 |
|
13 Frameworks = ( |
|
14 UnittestExecutor, |
|
15 PytestExecutor, |
|
16 ) |