mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-25 04:25:29 -04:00
17 lines
393 B
Python
17 lines
393 B
Python
#!/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()
|