Source code for pymcxray.FileFormat.Results.test_XraySpectraSpecimenEmittedDetected

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

Tests for the module `XraySpectraSpecimenEmittedDetected`.
"""

# 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.XraySpectraSpecimenEmittedDetected as XraySpectraSpecimenEmittedDetected

# Globals and constants variables.
#SimulationsAuNPonC_Au_d100A_C_E10d0keV_N10000e_N1000000X_SpectraSpecimenEmittedDetected.csv

[docs]class TestXraySpectraSpecimenEmittedDetected(unittest.TestCase): """ TestCase class for the module `XraySpectraSpecimenEmittedDetected`. """
[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 = XraySpectraSpecimenEmittedDetected.XraySpectraSpecimenEmittedDetected() spectrumFile.path = get_current_module_path(__file__, "../../../test_data/results") spectrumFile.basename = "SimulationsAuNPonC_Au_d100A_C_E10d0keV_N10000e_N1000000X" spectrumFile.read() self.assertEquals(2000, len(spectrumFile.energies_keV)) self.assertEquals(2000, len(spectrumFile.totals)) self.assertEquals(2000, len(spectrumFile.characteristics)) self.assertEquals(2000, 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__)