(self)
| 24 | self.assertEqual((0, 0), scene.GetSize()) |
| 25 | |
| 26 | def test_graph(self): |
| 27 | g = Graph() |
| 28 | g.add_node('a', 5) |
| 29 | g.add_node('b', 6) |
| 30 | self.assertEqual(2, len(g.node)) |
| 31 | |
| 32 | # From: https://github.com/nipy/dipy/blob/51234a4437638535ff8f6e5819e14ccf7e1d1483/dipy/tracking/tests/test_fbc.py |
| 33 | def test_fbc(self): |
nothing calls this directly
no outgoing calls
no test coverage detected