Source code for pymcxray.FileFormat.Results.test_XraySpectraSpecimen

#!/usr/bin/env python
"""
.. py:currentmodule:: FileFormat.Results.test_XraySpectraSpecimen
.. moduleauthor:: Hendrix Demers <hendrix.demers@mail.mcgill.ca>

Tests for the module `XraySpectraSpecimen`.
"""

# Script information for the file.
__author__ = "Hendrix Demers (hendrix.demers@mail.mcgill.ca)"
__version__ = ""
__date__ = ""
__copyright__ = "Copyright (c) 2012 Hendrix Demers"
__license__ = ""

# Standard library modules.
import unittest
import logging

# Third party modules.

# Local modules.
from pymcxray import get_current_module_path

# Project modules
import pymcxray.FileFormat.Results.XraySpectraSpecimen as XraySpectraSpecimen

# Globals and constants variables.

[docs]class TestXraySpectraSpecimen(unittest.TestCase): """ TestCase class for the module `XraySpectraSpecimen`. """
[docs] def setUp(self): """ Setup method. """ unittest.TestCase.setUp(self)
[docs] def tearDown(self): """ Teardown method. """ unittest.TestCase.tearDown(self)
[docs] def testSkeleton(self): """ First test to check if the testcase is working with the testing framework. """ #self.fail("Test if the testcase is working.") self.assert_(True)
[docs] def test_read(self): """ Tests for method `read`. """ spectrumFile = XraySpectraSpecimen.XraySpectraSpecimen() spectrumFile.path = get_current_module_path(__file__, "../../../test_data/results") spectrumFile.basename = "ExperimentalSpectraMCXRay_Au100T250000A_E200d0keV_N1000e_N21000000X_t600s_w20eV_N64W" spectrumFile.read() self.assertEquals(40000, len(spectrumFile.energies_keV)) self.assertEquals(40000, len(spectrumFile.totals)) self.assertEquals(40000, len(spectrumFile.characteristics)) self.assertEquals(40000, len(spectrumFile.backgrounds))
#self.fail("Test if the testcase is working.") if __name__ == '__main__': #pragma: no cover logging.getLogger().setLevel(logging.DEBUG) from pymcxray.Testings import runTestModuleWithCoverage runTestModuleWithCoverage(__file__)