#!/usr/bin/env python # -*- coding: utf-8 -*- import unittest import sys import EcFlexpart sys.path.append('../python') class TestEcFlexpart(unittest.TestCase): ''' ''' def setUp(self): pass def test__init__(): # create an instance of EcFlexpart and get a dictionary of the # class attributes, compare this dict with an expected dict! return def test_write_namelist(): # simple return def test_retrieve(): # not sure how to check return # these functions should test the output and compare the results with an output # of the old version and check if there are no differences!!! # also check for errors?! Or check if it works for alle datasets and private public etc # - process_output # - create # - deacc_fluxes if __name__ == "__main__": unittest.main()