Skip to content

Commit

Permalink
Test and docs.
Browse files Browse the repository at this point in the history
  • Loading branch information
Thrameos committed Nov 12, 2019
1 parent 53f34af commit 084809c
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 0 deletions.
2 changes: 2 additions & 0 deletions doc/CHANGELOG.rst
Expand Up @@ -4,6 +4,8 @@ Changelog
This changelog *only* contains changes from the *first* pypi release (0.5.4.3) onwards. This changelog *only* contains changes from the *first* pypi release (0.5.4.3) onwards.


- **Next version - unreleased** - **Next version - unreleased**
- Automatic conversion of CharSequence from Python strings.

- java.lang.AutoCloseable supports Python "with" statement. - java.lang.AutoCloseable supports Python "with" statement.


- Updated getJVMVersion to work with JDK 9+. - Updated getJVMVersion to work with JDK 9+.
Expand Down
36 changes: 36 additions & 0 deletions test/jpypetest/test_charSequence.py
@@ -0,0 +1,36 @@
# *****************************************************************************
# Copyright 2019 Karl Einar Nelson
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# *****************************************************************************
import jpype
import sys
import logging
import time
import common

class ConversionCharSequenceTestCase(common.JPypeTestCase):
def setUp(self):
common.JPypeTestCase.setUp(self)

def testAutoConvert(self):
Instant = jpype.JClass("java.time.Instant")
now = "2019-11-12T03:20:54.710948400Z"
then = Instant.parse(now)
self.assertEqual(str(then), now)
then = Instant.parse(jpype.JString(now))
self.assertEqual(str(then), now)
then = Instant.parse(jpype.JObject(now, "java.lang.CharSequence"))
self.assertEqual(str(then), now)

0 comments on commit 084809c

Please sign in to comment.