OpenMC/tests/test_confidence_intervals/test_confidence_intervals.py
2013-02-01 15:22:32 -05:00

28 lines
673 B
Python

#!/usr/bin/env python
import os
from subprocess import Popen, STDOUT, PIPE
pwd = os.path.dirname(__file__)
def setup():
os.putenv('PWD', pwd)
os.chdir(pwd)
def test_run():
proc = Popen([pwd + '/../../src/openmc'], stderr=STDOUT, stdout=PIPE)
returncode = proc.wait()
print(proc.communicate()[0])
assert returncode == 0
def test_created_statepoint():
assert os.path.exists(pwd + '/statepoint.10.binary')
def test_created_output():
assert os.path.exists(pwd + '/tallies.out')
def teardown():
output = [pwd + '/statepoint.10.binary', pwd + '/tallies.out']
for f in output:
if os.path.exists(f):
os.remove(f)