mirror of https://github.com/kivy/pyjnius.git
18 lines
531 B
Python
18 lines
531 B
Python
from __future__ import print_function
|
|
from __future__ import division
|
|
from __future__ import absolute_import
|
|
import unittest
|
|
from jnius import JavaClass, MetaJavaClass, JavaMethod
|
|
from six import with_metaclass
|
|
|
|
class HelloWorldTest(unittest.TestCase):
|
|
|
|
def test_helloworld(self):
|
|
|
|
class HelloWorld(with_metaclass(MetaJavaClass, JavaClass)):
|
|
__javaclass__ = 'org/jnius/HelloWorld'
|
|
hello = JavaMethod('()Ljava/lang/String;')
|
|
|
|
a = HelloWorld()
|
|
self.assertEqual(a.hello(), 'world')
|