naver / fixture-monkey

Let Fixture Monkey generate test instances including edge cases automatically
https://naver.github.io/fixture-monkey
Apache License 2.0
560 stars 89 forks source link

Fix a SimpleValuePlugin "out of byte range" error #988

Closed junyoung-kang-kurly closed 3 months ago

junyoung-kang-kurly commented 3 months ago

Summary

Fix "out of byte range" issue by modifying SimpleValueJqwikPlugin to limit byte value generation to within Byte.MIN_VALUE and Byte.MAX_VALUE.

(Optional): Description

This PR addresses the issue where byte values generated by SimpleValueJqwikPlugin could exceed the valid range of Byte.MIN_VALUE and Byte.MAX_VALUE. The plugin has been modified to ensure byte values are constrained within this range.

How Has This Been Tested?

The changes have been tested by adding a new unit test, sampleSetObjectByte, which ensures that byte values generated by SimpleValueJqwikPlugin are within the range of Byte.MIN_VALUE and Byte.MAX_VALUE.

CLAassistant commented 3 months ago

CLA assistant check
All committers have signed the CLA.

seongahjo commented 3 months ago

@junyoung-kang-kurly Thank you for your contributing! Please sign the CLA to merge the PR.

junyoung-kang-kurly commented 3 months ago

@seongahjo Thank you. I signed!