File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 88
99class TestBasics (object ):
1010 """
11- Tests basic scyjava functions.
11+ Test basic scyjava functions.
1212 """
1313
1414 def test_jclass (self ):
1515 """
16- Tests the jclass function.
16+ Test the jclass function.
1717 """
1818 if mode == Mode .JEP :
1919 pytest .skip ("Jep does not support Java class objects!" )
@@ -23,7 +23,7 @@ def test_jclass(self):
2323
2424 def test_jimport (self ):
2525 """
26- Tests the jimport function.
26+ Test the jimport function.
2727 """
2828 Object = scyjava .jimport ("java.lang.Object" )
2929 assert Object is not None
@@ -34,7 +34,7 @@ def test_jimport(self):
3434
3535 def test_jinstance (self ):
3636 """
37- Tests the jinstance function.
37+ Test the jinstance function.
3838 """
3939 jstr = scyjava .to_java ("Hello" )
4040 assert scyjava .jinstance (jstr , "java.lang.String" )
Original file line number Diff line number Diff line change 2727class TestConvert (object ):
2828 def testClass (self ):
2929 """
30- Tests class detection from Java objects.
30+ Test class detection from Java objects.
3131 """
3232 if mode == Mode .JEP :
3333 pytest .skip ("The jclass function does not work yet in Jep mode." )
You can’t perform that action at this time.
0 commit comments