Updated testing harness and input_set for MG tests and added first MG test: test_mg_basic

This commit is contained in:
Adam Nelson 2015-11-17 20:30:16 -05:00
parent 640409c412
commit 9141e2a00f
6 changed files with 571 additions and 3 deletions

View file

@ -0,0 +1,17 @@
#!/usr/bin/env python
import os
import sys
sys.path.insert(0, os.pardir)
from testing_harness import TestHarness, PyAPITestHarness
import openmc
class MGBasicTestHarness(PyAPITestHarness):
def _build_inputs(self):
super(MGBasicTestHarness, self)._build_inputs()
if __name__ == '__main__':
harness = MGBasicTestHarness('statepoint.10.*', False, mg=True)
harness.main()