Esempio n. 1
0
 def test_plot_conic_curve_hyperbola(self):
     sypl.plot_conic_curve(self.hyperbola_coefs)
     assert False
Esempio n. 2
0
 def test_plot_conic_curve_parabola_xy(self):
     sypl.plot_conic_curve(self.parabola_xy_coefs)
     # not working
     assert False
Esempio n. 3
0
 def test_plot_conic_curve_ellipse(self):
     sypl.plot_conic_curve(self.ellipse_coefs)
     assert True
Esempio n. 4
0
 def test_plot_conic_curve_parabola_y(self):
     sypl.plot_conic_curve(self.parabola_y_coefs)
     assert True
Esempio n. 5
0
 def test_plot_conic_curve_circle(self):
     sypl.plot_conic_curve(self.circle_coefs, resolution=1000)
     plt.show()
     assert True