Package csb :: Package test :: Module app
[frames] | no frames]

Source Code for Module csb.test.app

 1  """ 
 2  CSB Test Runner app. Run with -h to see the app's documentation. 
 3  """ 
 4   
 5  from csb.test import Console 
 6   
 7   
8 -def main():
9 return Console('csb.test.cases.*')
10 11 12 if __name__ == '__main__': 13 main() 14