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
12 ' CDateFromIso CDateToIso
13 If ( CDateToIso( CDateFromIso("20161016") ) <> "20161016" ) Then
15 ElseIf ( CDateToIso( CDateFromIso("2016-10-16") ) <> "20161016" ) Then
17 ElseIf ( CDateToIso( CDateFromIso("-2016-10-16") ) <> "-20161016" ) Then
19 ElseIf ( CDateToIso( CDateFromIso("-20161016") ) <> "-20161016" ) Then
21 ElseIf ( CDateToIso( CDateFromIso("12016-10-16") ) <> "120161016" ) Then
23 ElseIf ( CDateToIso( CDateFromIso("120161016") ) <> "120161016" ) Then
25 ElseIf ( CDateToIso( CDateFromIso("-12016-10-16") ) <> "-120161016" ) Then
27 ElseIf ( CDateToIso( CDateFromIso("-120161016") ) <> "-120161016" ) Then
29 ElseIf ( CDateToIso( CDateFromIso("0001-01-01") ) <> "00010101" ) Then
31 ElseIf ( CDateToIso( CDateFromIso("00010101") ) <> "00010101" ) Then
33 ElseIf ( CDateToIso( CDateFromIso("-0001-12-31") ) <> "-00011231" ) Then
35 ElseIf ( CDateToIso( CDateFromIso("-00011231") ) <> "-00011231" ) Then
37 ElseIf ( CDateToIso( CDateFromIso("991231") ) <> "19991231" ) Then
42 ' TODO: add some failure tests for misformed input, On Error whatever?