diff options
author | PJ Fanning <fanningpj@apache.org> | 2021-08-07 19:40:35 +0000 |
---|---|---|
committer | PJ Fanning <fanningpj@apache.org> | 2021-08-07 19:40:35 +0000 |
commit | 4123427baecd704a264188601bc555eb1f86a345 (patch) | |
tree | 38214e20806e31b217bc64910d5106bd13ca00f7 /poi | |
parent | d2a3e63a48f7ebb508b1eb3f043f7f4df2a41827 (diff) | |
download | poi-4123427baecd704a264188601bc555eb1f86a345.tar.gz poi-4123427baecd704a264188601bc555eb1f86a345.zip |
add test
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1892091 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'poi')
-rw-r--r-- | poi/src/test/java/org/apache/poi/ss/formula/functions/TestTimeValue.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/poi/src/test/java/org/apache/poi/ss/formula/functions/TestTimeValue.java b/poi/src/test/java/org/apache/poi/ss/formula/functions/TestTimeValue.java index 3cd4ab552f..1cbee788b8 100644 --- a/poi/src/test/java/org/apache/poi/ss/formula/functions/TestTimeValue.java +++ b/poi/src/test/java/org/apache/poi/ss/formula/functions/TestTimeValue.java @@ -62,6 +62,7 @@ final class TestTimeValue { confirmTimeValue(new StringEval("1/01/2000 6:00 PM"), 0.75); // Serial number of a time entered as text. confirmTimeValue(new StringEval("12:00"), 0.5); // Serial number of a time entered as text. confirmTimeValue(new StringEval("6:00 PM"), 0.75); // Serial number of a time entered as text. + confirmTimeValue(new StringEval("12:03:45"), 0.5026041666642413); // Serial number of a time entered as text. } finally { LocaleUtil.setUserLocale(null); } |