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))
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___init__(self): r_tplot = RTplot(persist=0)