Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix: set stringValue in DoubleValue.setValue
  • Loading branch information
Qnzvna committed May 19, 2024
commit 2b59c26c3f8a366dcb4e9935889530a303c08c58
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ public double getValue() {

public void setValue(Double d) {
value = d;
stringValue = String.valueOf(value);
}

@Override
Expand Down
11 changes: 11 additions & 0 deletions src/test/java/net/sf/jsqlparser/expression/DoubleValueTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@

import org.junit.jupiter.api.Test;

import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertThrows;

public class DoubleValueTest {
Expand All @@ -28,4 +29,14 @@ public void testEmptyValue() {
new DoubleValue("");
});
}

@Test
public void shouldSetStringValue() {
final DoubleValue doubleValue = new DoubleValue("42");

doubleValue.setValue(43D);

assertEquals(43D, doubleValue.getValue());
assertEquals("43.0", doubleValue.toString());
}
}