Files
libreoffice/basic/qa/basic_coverage/test_cdatetofromiso_methods.vb
Eike Rathke af754ef9d6 Add unit test for CDateFromIso with YYYY-MM-DD, tdf#106956
Change-Id: Id7867228c091bb60764225a6436087dd390f13de
2017-04-28 15:46:33 +02:00

20 lines
636 B
VB.net

'
' This file is part of the LibreOffice project.
'
' This Source Code Form is subject to the terms of the Mozilla Public
' License, v. 2.0. If a copy of the MPL was not distributed with this
' file, You can obtain one at http://mozilla.org/MPL/2.0/.
'
Function doUnitTest as Integer
' CDateFromIso CDateToIso
If ( CDateToIso( CDateFromIso("20161016") ) <> "20161016" ) Then
doUnitTest = 0
ElseIf ( CDateToIso( CDateFromIso("2016-10-16") ) <> "20161016" ) Then
doUnitTest = 0
Else
doUnitTest = 1
End If
' TODO: add some failure tests for misformed input, On Error whatever?
End Function