New J2K: add some tests from obsolete issues
This commit is contained in:
+15
@@ -0,0 +1,15 @@
|
||||
public class TestNumberConversionInSetter {
|
||||
private double d;
|
||||
|
||||
public void init() {
|
||||
setD(1);
|
||||
}
|
||||
|
||||
public double getD() {
|
||||
return d;
|
||||
}
|
||||
|
||||
public void setD(double d) {
|
||||
this.d = d;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user