d0df704d8a
added python.path vm arg to startup script fixed infinite loop in unwrap() when displaying sequences of sequences git-svn-id: http://google-refine.googlecode.com/svn/trunk@509 7d457c2a-affb-35e4-300a-418c747d4874
16 lines
252 B
Python
16 lines
252 B
Python
# test of PR#201
|
|
|
|
import sys
|
|
from test_support import *
|
|
|
|
print 'Java Anonymous Inner Classes (test_janoninner.py)'
|
|
|
|
print 'importing'
|
|
import javatests.AnonInner
|
|
|
|
print 'instantiating'
|
|
x = javatests.AnonInner()
|
|
|
|
print 'invoking'
|
|
assert x.doit() == 2000
|