コード例 #1
0
 def test_plotlines(self):
     r_tplot = RTplot(persist=0)
     self.assertEqual(None, r_tplot.plotlines(data, names, title, style))
コード例 #2
0
 def test_scatter(self):
     r_tplot = RTplot(persist=0)
     self.assertEqual(None, r_tplot.scatter([1,2,3], [1,2,3], title='test'))
コード例 #3
0
 def test_clearFig(self):
     r_tplot = RTplot(persist=0)
     self.assertEqual(None, r_tplot.clearFig())
コード例 #4
0
 def test_plothist(self):
     r_tplot = RTplot(persist=0)
     self.assertEqual(None, r_tplot.plothist(data, title, names))
コード例 #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'))
コード例 #6
0
 def test_plotlines(self):
     r_tplot = RTplot(persist=0)
     self.assertEqual(None, r_tplot.plotlines(data, names, title, style))
コード例 #7
0
 def test_plothist(self):
     r_tplot = RTplot(persist=0)
     self.assertEqual(None, r_tplot.plothist(data, title, names))
コード例 #8
0
 def test_clearFig(self):
     r_tplot = RTplot(persist=0)
     self.assertEqual(None, r_tplot.clearFig())
コード例 #9
0
 def test___init__(self):
     r_tplot = RTplot(persist=0)