File: Test.py

package info (click to toggle)
python-orbit 0.3.1-12
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 1,492 kB
  • ctags: 801
  • sloc: sh: 9,444; ansic: 5,642; python: 1,141; makefile: 126
file content (10 lines) | stat: -rw-r--r-- 293 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/env python

import unittest,os, time

import BasicTest,ORBPOATest, ClientServer, BasicORB, AccessorTest

suite = unittest.TestSuite( (BasicTest.suite, ORBPOATest.suite,
	ClientServer.suite, BasicORB.suite, AccessorTest.suite ) )
runner = unittest.TextTestRunner()
runner.run(suite)