File: fixtures_two_classes.py

package info (click to toggle)
python-randomize 0.14-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 124 kB
  • sloc: python: 285; makefile: 8
file content (31 lines) | stat: -rw-r--r-- 443 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
"""
Fixture to test multiple test classes
"""
import unittest

class Tests_A_set(unittest.TestCase):

    def test_A_1(self):
        pass

    def test_A_2(self):
        pass

    def test_A_3(self):
        pass

    def test_A_4(self):
        pass

class Tests_B_set(unittest.TestCase):
    def test_B_1(self):
        pass

    def test_B_2(self):
        pass

    def test_B_3(self):
        pass

    def test_B_4(self):
        pass