1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
|
from javatests import ListTest
class PyListTest(ListTest):
def __init__(self):
ListTest.__init__(self)
def newInstance(self, coll):
if coll is None:
return list()
else:
return list(coll)
def isReadOnly(self):
return False
class PyTupleTest(ListTest):
def __init__(self):
ListTest.__init__(self)
def newInstance(self, coll):
if coll is None:
return tuple()
else:
return tuple(coll)
def isReadOnly(self):
return True
# these first two tests just verify that we have a good unit test
print "ListTest.java driver (test_javalist.py)"
print "running test on ArrayList"
alt = ListTest.getArrayListTest(False)
alt.testAll()
print "running test on ArrayList (read-only)"
alt = ListTest.getArrayListTest(True)
alt.testAll()
# Now run the critical tests
print "running test on PyListTest"
plt = PyListTest()
plt.testAll()
print "running test on PyTupleTest"
ptt = PyTupleTest()
ptt.testAll()
|