Passed
Push — master ( 1e243f...b519bb )
by Björn
197:44 queued 153:47
created

tests.protocols.gmpv208.entities.test_scan_configs   A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 125
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 62
dl 0
loc 125
rs 10
c 0
b 0
f 0
wmc 0
1
# -*- coding: utf-8 -*-
2
# Copyright (C) 2021 Greenbone Networks GmbH
3
#
4
# SPDX-License-Identifier: GPL-3.0-or-later
5
#
6
# This program is free software: you can redistribute it and/or modify
7
# it under the terms of the GNU General Public License as published by
8
# the Free Software Foundation, either version 3 of the License, or
9
# (at your option) any later version.
10
#
11
# This program is distributed in the hope that it will be useful,
12
# but WITHOUT ANY WARRANTY; without even the implied warranty of
13
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
# GNU General Public License for more details.
15
#
16
# You should have received a copy of the GNU General Public License
17
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
18
19
from ...gmpv208 import Gmpv208TestCase
20
from .scan_configs import (
21
    GmpCloneScanConfigTestMixin,
22
    GmpCreateScanConfigTestMixin,
23
    GmpCreateScanConfigFromOSPScannerTestMixin,
24
    GmpDeleteScanConfigTestMixin,
25
    GmpGetScanConfigTestMixin,
26
    GmpGetScanConfigsTestMixin,
27
    GmpImportScanConfigTestMixin,
28
    GmpModifyScanConfigSetCommentTestMixin,
29
    GmpModifyScanConfigSetFamilySelectionTestMixin,
30
    GmpModifyScanConfigSetNameTestMixin,
31
    GmpModifyScanConfigSetNvtPreferenceTestMixin,
32
    GmpModifyScanConfigSetNvtSelectionTestMixin,
33
    GmpModifyScanConfigSetScannerPreferenceTestMixin,
34
    GmpModifyScanConfigTestMixin,
35
    GmpSyncScanConfigTestMixin,
36
)
37
38
39
class Gmpv208CloneScanConfigTestCase(
40
    GmpCloneScanConfigTestMixin, Gmpv208TestCase
41
):
42
    pass
43
44
45
class Gmpv208CreateScanConfigTestCase(
46
    GmpCreateScanConfigTestMixin, Gmpv208TestCase
47
):
48
    pass
49
50
51
class Gmpv208CreateScanConfigFromOSPScannerTestCase(
52
    GmpCreateScanConfigFromOSPScannerTestMixin, Gmpv208TestCase
53
):
54
    pass
55
56
57
class Gmpv208DeleteScanConfigTestCase(
58
    GmpDeleteScanConfigTestMixin, Gmpv208TestCase
59
):
60
    pass
61
62
63
class Gmpv208GetScanConfigTestCase(GmpGetScanConfigTestMixin, Gmpv208TestCase):
64
    pass
65
66
67
class Gmpv208GetScanConfigsTestCase(
68
    GmpGetScanConfigsTestMixin, Gmpv208TestCase
69
):
70
    pass
71
72
73
class Gmpv208ImportScanConfigTestCase(
74
    GmpImportScanConfigTestMixin, Gmpv208TestCase
75
):
76
    pass
77
78
79
class Gmpv208ModifyScanConfigSetCommentTestCase(
80
    GmpModifyScanConfigSetCommentTestMixin, Gmpv208TestCase
81
):
82
    pass
83
84
85
class Gmpv208ModifyScanConfigSetFamilySelectionTestCase(
86
    GmpModifyScanConfigSetFamilySelectionTestMixin, Gmpv208TestCase
87
):
88
    pass
89
90
91
class Gmpv208ModifyScanConfigSetNvtSelectionTestCase(
92
    GmpModifyScanConfigSetNvtSelectionTestMixin, Gmpv208TestCase
93
):
94
    pass
95
96
97
class Gmpv208ModifyScanConfigSetNameTestCase(
98
    GmpModifyScanConfigSetNameTestMixin, Gmpv208TestCase
99
):
100
    pass
101
102
103
class Gmpv208ModifyScanConfigSetNvtPreferenceTestCase(
104
    GmpModifyScanConfigSetNvtPreferenceTestMixin, Gmpv208TestCase
105
):
106
    pass
107
108
109
class Gmpv208ModifyScanConfigSetScannerPreferenceTestCase(
110
    GmpModifyScanConfigSetScannerPreferenceTestMixin, Gmpv208TestCase
111
):
112
    pass
113
114
115
class Gmpv208ModifyScanConfigTestCase(
116
    GmpModifyScanConfigTestMixin, Gmpv208TestCase
117
):
118
    pass
119
120
121
class Gmpv208SyncScanConfigTestCase(
122
    GmpSyncScanConfigTestMixin, Gmpv208TestCase
123
):
124
    pass
125