File: test_javalist.py

package info (click to toggle)
jython 2.5.3-16%2Bdeb9u1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 43,772 kB
  • ctags: 106,434
  • sloc: python: 351,322; java: 216,349; xml: 1,584; sh: 330; perl: 114; ansic: 102; makefile: 45
file content (52 lines) | stat: -rw-r--r-- 1,033 bytes parent folder | download | duplicates (5)
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()