(self, n, is_heavy)
| 54 | """Simple test representation to differentiate light/heavy tests.""" |
| 55 | |
| 56 | def __init__(self, n, is_heavy): |
| 57 | self.n = n |
| 58 | self.is_heavy = is_heavy |
| 59 | self.keep_output = False |
| 60 | |
| 61 | |
| 62 | class TestSequenceProc(unittest.TestCase): |