diff options
author | PJ Fanning <fanningpj@apache.org> | 2022-08-01 16:12:36 +0000 |
---|---|---|
committer | PJ Fanning <fanningpj@apache.org> | 2022-08-01 16:12:36 +0000 |
commit | 725b256e951f9ffc5435a335501a3e94ca8be110 (patch) | |
tree | 9f5f6d8fb91f34628d0e9a0a3ca868e4b9cba557 /poi/src/test | |
parent | 633baa45eb3cb314a7128ad4f010071fe1e4eb84 (diff) | |
download | poi-725b256e951f9ffc5435a335501a3e94ca8be110.tar.gz poi-725b256e951f9ffc5435a335501a3e94ca8be110.zip |
[bug-66181] add time example
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1903172 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'poi/src/test')
-rw-r--r-- | poi/src/test/java/org/apache/poi/ss/formula/functions/TestValue.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/poi/src/test/java/org/apache/poi/ss/formula/functions/TestValue.java b/poi/src/test/java/org/apache/poi/ss/formula/functions/TestValue.java index 03f8aab85a..7166037788 100644 --- a/poi/src/test/java/org/apache/poi/ss/formula/functions/TestValue.java +++ b/poi/src/test/java/org/apache/poi/ss/formula/functions/TestValue.java @@ -73,6 +73,8 @@ final class TestValue { confirmValue("$1,000e2", 100000); confirmValue("30%", 0.3); confirmValue("30 %", 0.3); + //next test is based on https://support.microsoft.com/en-us/office/value-function-257d0108-07dc-437d-ae1c-bc2d3953d8c2 + confirmValue("4:48:00", 0.2); } @Test |