-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a simple unit test for get_energy
- Loading branch information
Showing
1 changed file
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
import ase.build | ||
from ase.calculators.singlepoint import SinglePointCalculator | ||
import ase.io | ||
import pytest | ||
|
||
from mctools.generic.get_energy import get_energy | ||
|
||
|
||
ENERGY = 3.141 | ||
FILENAME = "methane.extxyz" | ||
|
||
|
||
@pytest.fixture | ||
def methane_with_energy() -> ase.Atoms: | ||
atoms = ase.build.molecule("CH4") | ||
atoms.calc = SinglePointCalculator(atoms, energy=ENERGY) | ||
return atoms | ||
|
||
|
||
def test_get_energy(methane_with_energy, tmp_path) -> None: | ||
ase.io.write(tmp_path / FILENAME, methane_with_energy) | ||
|
||
assert get_energy(tmp_path / FILENAME) == pytest.approx(ENERGY) |