Skip to content

Commit 3c545bc

Browse files
committed
test: add java.io and java.nio tests
1 parent 5cc48ce commit 3c545bc

File tree

39 files changed

+6900
-25
lines changed

39 files changed

+6900
-25
lines changed

Cargo.lock

Lines changed: 32 additions & 21 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ proc-macro2 = "1.0.101"
5656
quote = "1.0.40"
5757
rayon = "1.11.0"
5858
reqwest = { version = "0.12.23", default-features = false }
59-
serde = "1.0.219"
59+
serde = "1.0.224"
6060
serde_plain = "1.0.2"
6161
stacker = "0.1.21"
6262
syn = "2.0.106"

tests/annotation/values/Test.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ enum Priority {
1111
String value() default "simple";
1212
}
1313

14-
// Comprehensive annotation with all value types
14+
// Annotation with all value types
1515
@Retention(RetentionPolicy.RUNTIME)
1616
@interface AllValueTypes {
1717
// Primitive types

tests/math/bigdecimal/Test.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import java.math.MathContext;
44
import java.math.RoundingMode;
55

6-
/** Comprehensive test for BigDecimal operations. */
6+
/** Tests for BigDecimal operations. */
77
public class Test {
88

99
public static void main(String[] args) {

tests/math/biginteger/Test.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import java.math.BigInteger;
22

3-
/** Comprehensive test for BigInteger operations. */
3+
/** Tests for BigInteger operations. */
44
public class Test {
55

66
public static void main(String[] args) {

0 commit comments

Comments
 (0)