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