TimeSeries2 unit test stubs
| 23 | |
| 24 | |
| 25 | class TestTimeSeries2(unittest.TestCase): |
| 26 | """TimeSeries2 unit test stubs""" |
| 27 | |
| 28 | def setUp(self): |
| 29 | pass |
| 30 | |
| 31 | def tearDown(self): |
| 32 | pass |
| 33 | |
| 34 | def testTimeSeries2(self): |
| 35 | """Test TimeSeries2""" |
| 36 | # FIXME: construct object with mandatory attributes with example values |
| 37 | # model = TimeSeries2() # noqa: E501 |
| 38 | pass |
| 39 | |
| 40 | |
| 41 | if __name__ == "__main__": |
nothing calls this directly
no outgoing calls
no test coverage detected