Module quantum_inferno.tests.plot_templates.test_plot_base
Tests for the plot_base module.
Classes
class MeshBaseTest (methodName='runTest')
-
A class whose instances are single test cases.
By default, the test code itself should be placed in a method named 'runTest'.
If the fixture may be used for many test cases, create as many test methods as are needed. When instantiating such a TestCase subclass, specify in the constructor arguments the name of the test method that the instance is to execute.
Test authors should subclass TestCase for their own tests. Construction and deconstruction of the test's environment ('fixture') can be implemented by overriding the 'setUp' and 'tearDown' methods respectively.
If it is necessary to override the init method, the base class init method must always be called. It is important that subclasses should not change the signature of their init method, since instances of the classes are instantiated automatically by parts of the framework in order to be run.
When subclassing TestCase, you can set these attributes: * failureException: determines which exception will be raised when the instance's assertion methods fail; test methods raising this exception will be deemed to have 'failed' rather than 'errored'. * longMessage: determines whether long messages (including repr of objects used in assert methods) will be printed on failure in addition to any explicit message passed. * maxDiff: sets the maximum length of a diff in failure messages by assert methods using difflib. It is looked up as an instance attribute so can be configured by individual tests if required.
Create an instance of the class that will use the named test method when executed. Raises a ValueError if the instance does not have a method with the specified name.
Expand source code
class MeshBaseTest(unittest.TestCase): def test_mesh_base(self): test_mesh_base = pb.MeshBase(time=np.array([1, 2, 3]), frequency=np.array([1, 2, 3])) self.assertEqual(test_mesh_base.frequency_scaling, "log") self.assertEqual(test_mesh_base.shading, "auto") self.assertEqual(test_mesh_base.frequency_hz_ymin, 1) self.assertEqual(test_mesh_base.frequency_hz_ymax, 3) self.assertIsNone(test_mesh_base.colormap) self.assertEqual(test_mesh_base.units_frequency, "Hz") def test_mesh_base_freq_scal(self): test_mesh_base = pb.MeshBase(time=np.array([1, 2, 3]), frequency=np.array([1, 2, 3]), frequency_scaling="test") self.assertEqual(test_mesh_base.frequency_scaling, "log") def test_mesh_base_shading(self): test_mesh_base = pb.MeshBase(time=np.array([1, 2, 3]), frequency=np.array([1, 2, 3]), shading="test") self.assertEqual(test_mesh_base.shading, "auto")
Ancestors
- unittest.case.TestCase
Methods
def test_mesh_base(self)
def test_mesh_base_freq_scal(self)
def test_mesh_base_shading(self)
class MeshColormapLimitsTest (methodName='runTest')
-
A class whose instances are single test cases.
By default, the test code itself should be placed in a method named 'runTest'.
If the fixture may be used for many test cases, create as many test methods as are needed. When instantiating such a TestCase subclass, specify in the constructor arguments the name of the test method that the instance is to execute.
Test authors should subclass TestCase for their own tests. Construction and deconstruction of the test's environment ('fixture') can be implemented by overriding the 'setUp' and 'tearDown' methods respectively.
If it is necessary to override the init method, the base class init method must always be called. It is important that subclasses should not change the signature of their init method, since instances of the classes are instantiated automatically by parts of the framework in order to be run.
When subclassing TestCase, you can set these attributes: * failureException: determines which exception will be raised when the instance's assertion methods fail; test methods raising this exception will be deemed to have 'failed' rather than 'errored'. * longMessage: determines whether long messages (including repr of objects used in assert methods) will be printed on failure in addition to any explicit message passed. * maxDiff: sets the maximum length of a diff in failure messages by assert methods using difflib. It is looked up as an instance attribute so can be configured by individual tests if required.
Create an instance of the class that will use the named test method when executed. Raises a ValueError if the instance does not have a method with the specified name.
Expand source code
class MeshColormapLimitsTest(unittest.TestCase): def test_mesh_colormap_limits(self): mesh_array = np.array([1, 2, 3, 4, 5, 6, 7, 8, 9, 0]) test_min, test_max = pb.mesh_colormap_limits(mesh_array) self.assertEqual(test_min, 0.) self.assertEqual(test_max, 9.) def test_mesh_colormap_limits_short(self): mesh_array = np.array([1, 2, 3, 4, 5, 6, 7, 8, 9, 0]) test_min, test_max = pb.mesh_colormap_limits(mesh_array, colormap_scaling="range", color_range=4) self.assertEqual(test_min, 5.) self.assertEqual(test_max, 9.) def test_mesh_colormap_limits_long(self): mesh_array = np.array([1, 2, 3, 4, 5, 6, 7, 8, 9, 0]) test_min, test_max = pb.mesh_colormap_limits(mesh_array, colormap_scaling="range", color_range=12) self.assertEqual(test_min, -3.) self.assertEqual(test_max, 9.) def test_mesh_colormap_limits_abs_scaling(self): mesh_array = np.array([-1, 2, 3, 4, -5, 6, 7, 8, -9, 0]) test_min, test_max = pb.mesh_colormap_limits(mesh_array, colormap_scaling="abs") self.assertEqual(test_min, 0.) self.assertEqual(test_max, 9.)
Ancestors
- unittest.case.TestCase
Methods
def test_mesh_colormap_limits(self)
def test_mesh_colormap_limits_abs_scaling(self)
def test_mesh_colormap_limits_long(self)
def test_mesh_colormap_limits_short(self)
class MeshPanelTest (methodName='runTest')
-
A class whose instances are single test cases.
By default, the test code itself should be placed in a method named 'runTest'.
If the fixture may be used for many test cases, create as many test methods as are needed. When instantiating such a TestCase subclass, specify in the constructor arguments the name of the test method that the instance is to execute.
Test authors should subclass TestCase for their own tests. Construction and deconstruction of the test's environment ('fixture') can be implemented by overriding the 'setUp' and 'tearDown' methods respectively.
If it is necessary to override the init method, the base class init method must always be called. It is important that subclasses should not change the signature of their init method, since instances of the classes are instantiated automatically by parts of the framework in order to be run.
When subclassing TestCase, you can set these attributes: * failureException: determines which exception will be raised when the instance's assertion methods fail; test methods raising this exception will be deemed to have 'failed' rather than 'errored'. * longMessage: determines whether long messages (including repr of objects used in assert methods) will be printed on failure in addition to any explicit message passed. * maxDiff: sets the maximum length of a diff in failure messages by assert methods using difflib. It is looked up as an instance attribute so can be configured by individual tests if required.
Create an instance of the class that will use the named test method when executed. Raises a ValueError if the instance does not have a method with the specified name.
Expand source code
class MeshPanelTest(unittest.TestCase): def test_mesh_panel(self): test_mesh_panel = pb.MeshPanel(tfr=np.array([1, 2, 3, 4, 5, 6, 7, 8, 9, 0])) self.assertTrue(test_mesh_panel.is_auto_color_min_max()) def test_mesh_user_panel(self): test_mesh_panel = pb.MeshPanel(tfr=np.array([1, 2, 3]), colormap_scaling="user", color_min=5, color_max=10) self.assertFalse(test_mesh_panel.is_auto_color_min_max()) self.assertEqual(test_mesh_panel.color_min, 5) self.assertEqual(test_mesh_panel.color_max, 10) def test_mesh_ytick_style(self): test_mesh_panel = pb.MeshPanel(tfr=np.array([1, 2, 3]), ytick_style="test") self.assertEqual(test_mesh_panel.ytick_style, "sci")
Ancestors
- unittest.case.TestCase
Methods
def test_mesh_panel(self)
def test_mesh_user_panel(self)
def test_mesh_ytick_style(self)
class PlotBaseTest (methodName='runTest')
-
A class whose instances are single test cases.
By default, the test code itself should be placed in a method named 'runTest'.
If the fixture may be used for many test cases, create as many test methods as are needed. When instantiating such a TestCase subclass, specify in the constructor arguments the name of the test method that the instance is to execute.
Test authors should subclass TestCase for their own tests. Construction and deconstruction of the test's environment ('fixture') can be implemented by overriding the 'setUp' and 'tearDown' methods respectively.
If it is necessary to override the init method, the base class init method must always be called. It is important that subclasses should not change the signature of their init method, since instances of the classes are instantiated automatically by parts of the framework in order to be run.
When subclassing TestCase, you can set these attributes: * failureException: determines which exception will be raised when the instance's assertion methods fail; test methods raising this exception will be deemed to have 'failed' rather than 'errored'. * longMessage: determines whether long messages (including repr of objects used in assert methods) will be printed on failure in addition to any explicit message passed. * maxDiff: sets the maximum length of a diff in failure messages by assert methods using difflib. It is looked up as an instance attribute so can be configured by individual tests if required.
Create an instance of the class that will use the named test method when executed. Raises a ValueError if the instance does not have a method with the specified name.
Expand source code
class PlotBaseTest(unittest.TestCase): def test_plot_base(self): test_plot_base = pb.PlotBase(station_id="test", figure_title="test") self.assertEqual(test_plot_base.station_id, "test") self.assertEqual(test_plot_base.figure_title, "test") self.assertTrue(test_plot_base.figure_title_show) self.assertEqual(test_plot_base.start_time_epoch, 0.) self.assertEqual(test_plot_base.units_time, "s")
Ancestors
- unittest.case.TestCase
Methods
def test_plot_base(self)
class WaveformBaseTest (methodName='runTest')
-
A class whose instances are single test cases.
By default, the test code itself should be placed in a method named 'runTest'.
If the fixture may be used for many test cases, create as many test methods as are needed. When instantiating such a TestCase subclass, specify in the constructor arguments the name of the test method that the instance is to execute.
Test authors should subclass TestCase for their own tests. Construction and deconstruction of the test's environment ('fixture') can be implemented by overriding the 'setUp' and 'tearDown' methods respectively.
If it is necessary to override the init method, the base class init method must always be called. It is important that subclasses should not change the signature of their init method, since instances of the classes are instantiated automatically by parts of the framework in order to be run.
When subclassing TestCase, you can set these attributes: * failureException: determines which exception will be raised when the instance's assertion methods fail; test methods raising this exception will be deemed to have 'failed' rather than 'errored'. * longMessage: determines whether long messages (including repr of objects used in assert methods) will be printed on failure in addition to any explicit message passed. * maxDiff: sets the maximum length of a diff in failure messages by assert methods using difflib. It is looked up as an instance attribute so can be configured by individual tests if required.
Create an instance of the class that will use the named test method when executed. Raises a ValueError if the instance does not have a method with the specified name.
Expand source code
class WaveformBaseTest(unittest.TestCase): def test_waveform_base(self): test_wf_base = pb.WaveformPlotBase(station_id="test", figure_title="test") self.assertFalse(test_wf_base.label_panel_show) self.assertIsNone(test_wf_base.labels_fontweight) self.assertIsNone(test_wf_base.waveform_color)
Ancestors
- unittest.case.TestCase
Methods
def test_waveform_base(self)
class WaveformPanelTest (methodName='runTest')
-
A class whose instances are single test cases.
By default, the test code itself should be placed in a method named 'runTest'.
If the fixture may be used for many test cases, create as many test methods as are needed. When instantiating such a TestCase subclass, specify in the constructor arguments the name of the test method that the instance is to execute.
Test authors should subclass TestCase for their own tests. Construction and deconstruction of the test's environment ('fixture') can be implemented by overriding the 'setUp' and 'tearDown' methods respectively.
If it is necessary to override the init method, the base class init method must always be called. It is important that subclasses should not change the signature of their init method, since instances of the classes are instantiated automatically by parts of the framework in order to be run.
When subclassing TestCase, you can set these attributes: * failureException: determines which exception will be raised when the instance's assertion methods fail; test methods raising this exception will be deemed to have 'failed' rather than 'errored'. * longMessage: determines whether long messages (including repr of objects used in assert methods) will be printed on failure in addition to any explicit message passed. * maxDiff: sets the maximum length of a diff in failure messages by assert methods using difflib. It is looked up as an instance attribute so can be configured by individual tests if required.
Create an instance of the class that will use the named test method when executed. Raises a ValueError if the instance does not have a method with the specified name.
Expand source code
class WaveformPanelTest(unittest.TestCase): def test_waveform_panel(self): test_wf_panel = pb.WaveformPanel(sig=np.array([1, 2, 3]), time=np.array([1, 2, 3])) self.assertEqual(test_wf_panel.units, "Norm") self.assertEqual(test_wf_panel.label, "(wf)") self.assertEqual(test_wf_panel.yscaling, "auto") self.assertEqual(test_wf_panel.ytick_style, "plain") def test_waveform_panel_yscaling(self): test_wf_panel = pb.WaveformPanel(sig=np.array([1, 2, 3]), time=np.array([1, 2, 3]), yscaling="test") self.assertEqual(test_wf_panel.yscaling, "else") def test_waveform_panel_ytick_style(self): test_wf_panel = pb.WaveformPanel(sig=np.array([1, 2, 3]), time=np.array([1, 2, 3]), ytick_style="test") self.assertEqual(test_wf_panel.ytick_style, "plain")
Ancestors
- unittest.case.TestCase
Methods
def test_waveform_panel(self)
def test_waveform_panel_yscaling(self)
def test_waveform_panel_ytick_style(self)