From 970b645dbe73673e4d4881d00576c69b62dab2eb Mon Sep 17 00:00:00 2001 From: Douglas Thor Date: Wed, 15 Jun 2016 16:52:00 -0700 Subject: [PATCH] Added stub for unittests/test_lib_plot.py --- unittests/test_lib_plot.py | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 unittests/test_lib_plot.py diff --git a/unittests/test_lib_plot.py b/unittests/test_lib_plot.py new file mode 100644 index 00000000..b6ad5c25 --- /dev/null +++ b/unittests/test_lib_plot.py @@ -0,0 +1,27 @@ +# -*- coding: utf-8 -*- +import unittest +import wtc +import wx + +import wx.lib.plot as wxplot + +#--------------------------------------------------------------------------- + +class lib_plot_PlotCanvas_Tests(wtc.WidgetTestCase): + + def test_lib_plot_plotcanvasCtor(self): + """ Ctor? """ + p = wxplot.PlotCanvas(self.frame) + + +class lib_plot_Tests(wtc.WidgetTestCase): + def test_lib_plot_tempstyle_contextmanager(self): + pass + + def test_lib_plot_tempstyle_decorator(self): + pass + +#--------------------------------------------------------------------------- + +if __name__ == '__main__': + unittest.main()