| 8 | import numpy as np |
| 9 | |
| 10 | class TestMatplotlib(unittest.TestCase): |
| 11 | def test_plot(self): |
| 12 | plt.plot(np.linspace(0,1,50), np.random.rand(50)) |
| 13 | plt.savefig("plot1.png") |
| 14 | |
| 15 | self.assertTrue(os.path.isfile("plot1.png")) |
nothing calls this directly
no outgoing calls
no test coverage detected