mirror of
https://github.com/triqs/dft_tools
synced 2024-11-08 23:23:49 +01:00
db16a8438d
The names of the test suites have been prefixed with an underscore to avoid name conflicts with corresponding modules. Also an attempt to make a scan of all tests has been made by creating a 'test_all.py' script that is supposed to discover all test cases and run them. Unfortunately, this does not work as expected because many tests use input files assumed to be found in the current directory, which is not true if the tests are run from a different (parent) directory. This can be fixed by either forcing the change of directory (but it seems that 'unittest' does not have this functionality) or prepending input file names with the current module directory.
33 lines
742 B
Python
33 lines
742 B
Python
r"""
|
|
Tests for class 'Doscar' from module 'vaspio'
|
|
"""
|
|
import mytest
|
|
import numpy as np
|
|
from vaspio import Doscar
|
|
|
|
################################################################################
|
|
#
|
|
# TestDoscar
|
|
#
|
|
################################################################################
|
|
class TestDoscar(mytest.MyTestCase):
|
|
"""
|
|
Function:
|
|
|
|
def Doscar.from_file(vasp_dir, dos_filename)
|
|
|
|
Scenarios:
|
|
- correct DOSCAR file
|
|
|
|
"""
|
|
# Scenario 1
|
|
def test_example(self):
|
|
filename = 'DOSCAR.example'
|
|
doscar = Doscar()
|
|
doscar.from_file(vasp_dir='./', dos_filename=filename)
|
|
|
|
test_efermi = doscar.efermi
|
|
expected = 5.84395237
|
|
self.assertAlmostEqual(test_efermi, expected)
|
|
|