Source code for cis_interface.examples.tests.test_fakeplant

import os
from cis_interface.examples.tests import TestExample


[docs]class TestExampleFakeplant(TestExample): r"""Test the Fakeplant example.""" example_name = 'fakeplant' @property def output_dir(self): r"""str: Output directory.""" if self.yamldir is None: # pragma: debug return None return os.path.join(self.yamldir, 'Output') @property def output_files(self): r"""list: Output files for the run.""" outdir = self.output_dir filelist = ['canopy_structure.txt', 'growth_rate.txt', 'light_intensity.txt', 'photosynthesis_rate.txt'] out = [os.path.join(outdir, f) for f in filelist] return out
[docs] def check_results(self): r"""This should be overridden with checks for the result.""" pass
[docs] def run_example(self): r"""This runs an example in the correct language.""" if self.output_dir is not None: if not os.path.isdir(self.output_dir): os.mkdir(self.output_dir) super(TestExampleFakeplant, self).run_example()