(self, ren)
| 11 | class TestStyleBase(object): |
| 12 | |
| 13 | def __init__(self, ren): |
| 14 | self.ren1 = ren |
| 15 | |
| 16 | # Get random numbers |
| 17 | self.math = vtkMath() |
| 18 | self.math.RandomSeed(1) |
| 19 | |
| 20 | |
| 21 | def randint(self, min, max): |
nothing calls this directly
no test coverage detected