Donghyeon Kim

Results 13 issues of Donghyeon Kim

The infinite loop problem is caused by different diacritic handling policies. `NSScanner.scanUpToCharacters(from:)` is not diacritic sensitive but `NSScanner.scanString(_:) is diacritic sensitive.

Resolves: #1565 !! This is working PoC Inspired by https://github.com/PlaytikaOSS/feign-reactive/pull/486 ## TODO - [ ] Separate Kotlin support module - [ ] Enhance test case - [ ] Refactoring -...

#284 와 같은 코틀린에서 쓸 편의 도구를 제공하는 라이브러리를 추가한다 (참고) https://github.com/mockito/mockito-kotlin

아래과 같은 코드를 ```kotlin val foo: Long = context.generate { Long::class.java } as Long ``` 다음과 같이 작성할 수 있도록 ```kotlin val foo: Long = context.generate() ``` 코틀린 확장 함수를...

MockitoCustomizer는 인터페이스나 추상 클래스인 경우에만 mocking 합니다. ParameterizedTest에서 매개변수로 넘길 개체를 생성할 때 Concrete class도 mocking 할 수 있는 수단이 있으면 좋겠습니다.

RequestMappingHandlerAdapter call `webRequest.requestCompleted();` even though the async request has not completed? Is that intentional? or is it a bug? https://github.com/spring-projects/spring-framework/blob/main/spring-webmvc/src/main/java/org/springframework/web/servlet/mvc/method/annotation/RequestMappingHandlerAdapter.java#L903

status: waiting-for-triage
in: web

Resolves #1758 Contains #1756 PR commits

- related: #361 - pre-work - #1754 - Eliminates the possibility of breaking changes following AsyncFeign's refactoring in advance - #1755 - #1756

This is a prerequisite for PR #224 This is different approach to the problem that Pulse is trying to solve. I believe this is simpler and more intuitive logic for...