2012-08-18 02:14:53 +00:00
|
|
|
import unittest
|
|
|
|
from jnius.reflect import autoclass
|
|
|
|
|
2012-08-26 13:53:11 +00:00
|
|
|
|
2012-08-18 02:14:53 +00:00
|
|
|
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('')
|
2012-08-26 13:53:11 +00:00
|
|
|
|
|
|
|
def test_printf(self):
|
|
|
|
System = autoclass('java.lang.System')
|
|
|
|
System.out.printf('hi\n')
|
2012-08-26 15:52:19 +00:00
|
|
|
System.out.printf('hi %s %s\n', 'jnius', 'other string')
|