#!/usr/bin/env python """ open/DurusWorks/sancho/test/utest_template.py """ from sancho.utest import UTest class Test(UTest): def _pre(self): """Setup code for each test method.""" def _post(self): """Shutdown code for each test method.""" def basic(self): """A test method Output to stdout is trapped, unless an exception is raised here. """ if __name__ == '__main__': Test()