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