mirror of https://github.com/kivy/pyjnius.git
11 lines
339 B
Python
11 lines
339 B
Python
|
import unittest
|
||
|
from jnius.reflect import autoclass
|
||
|
|
||
|
class ImplementationTest(unittest.TestCase):
|
||
|
|
||
|
def test_println(self):
|
||
|
# System.out.println implies recursive lookup, and j_self assignation.
|
||
|
# It was crashing during the implementation :/
|
||
|
System = autoclass('java.lang.System')
|
||
|
System.out.println('')
|