def test_plotlines(self):
     r_tplot = RTplot(persist=0)
     self.assertEqual(None, r_tplot.plotlines(data, names, title, style))
 def test_scatter(self):
     r_tplot = RTplot(persist=0)
     self.assertEqual(None, r_tplot.scatter([1,2,3], [1,2,3], title='test'))
 def test_clearFig(self):
     r_tplot = RTplot(persist=0)
     self.assertEqual(None, r_tplot.clearFig())
 def test_plothist(self):
     r_tplot = RTplot(persist=0)
     self.assertEqual(None, r_tplot.plothist(data, title, names))
Exemple #5
0
 def test_scatter(self):
     r_tplot = RTplot(persist=0)
     self.assertEqual(None,
                      r_tplot.scatter([1, 2, 3], [1, 2, 3], title='test'))
Exemple #6
0
 def test_plotlines(self):
     r_tplot = RTplot(persist=0)
     self.assertEqual(None, r_tplot.plotlines(data, names, title, style))
Exemple #7
0
 def test_plothist(self):
     r_tplot = RTplot(persist=0)
     self.assertEqual(None, r_tplot.plothist(data, title, names))
Exemple #8
0
 def test_clearFig(self):
     r_tplot = RTplot(persist=0)
     self.assertEqual(None, r_tplot.clearFig())
Exemple #9
0
 def test___init__(self):
     r_tplot = RTplot(persist=0)