2 ' This file is part of the LibreOffice project.
4 ' This Source Code Form is subject to the terms of the Mozilla Public
5 ' License, v. 2.0. If a copy of the MPL was not distributed with this
6 ' file, You can obtain one at http://mozilla.org/MPL/2.0/.
11 Function doUnitTest() As String
14 doUnitTest
= TestUtil
.GetResult()
17 Sub verify_testDateAdd()
18 On Error GoTo errorHandler
21 TestUtil
.AssertEqual(DateAdd("m", 1, "2014-01-29"), CDate("2014-02-28"), "DateAdd(""m"", 1, ""2014-01-29"")")
23 ' tdf#114011 Without the fix in place, this test would have failed with
24 ' returned 01/31/32767, expected 12/31/32767
25 TestUtil
.AssertEqual(DateAdd("m", 1, 31012004), CDate("32767-12-31"), "DateAdd(""m"", 1, 31012004)")
26 TestUtil
.AssertEqual(DateAdd("M", 1, 31012005), CDate("32767-12-31"), "DateAdd(""M"", 1, 31012005)")
30 TestUtil
.ReportErrorHandler("verify_testDateAdd", Err
, Error$, Erl
)