Files
libreoffice/basic/qa/vba_tests/weekdayname.vb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
1.3 KiB
VB.net
Raw Normal View History

'
' 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/.
'
Option VBASupport 1
Option Explicit
Function doUnitTest() As String
TestUtil.TestInit
verify_testWeekDayName
doUnitTest = TestUtil.GetResult()
End Function
Sub verify_testWeekDayName()
On Error GoTo errorHandler
' basic/qa/cppunit/test_vba.cxx sets LANGUAGE_ENGLISH_UK
TestUtil.AssertEqual(WeekdayName(1), "Monday", "WeekdayName(1)")
TestUtil.AssertEqual(WeekdayName(1, , vbSunday), "Sunday", "WeekdayName(1, , vbSunday)")
TestUtil.AssertEqual(WeekdayName(1, , vbMonday), "Monday", "WeekdayName(1, , vbMonday)")
TestUtil.AssertEqual(WeekdayName(2), "Tuesday","WeekdayName(2)")
TestUtil.AssertEqual(WeekdayName(2, True, vbMonday), "Tue", "WeekdayName(2, True, vbMonday)")
TestUtil.AssertEqual(WeekdayName(2, True, vbTuesday), "Wed", "WeekdayName(2, True, vbTuesday)")
TestUtil.AssertEqual(WeekdayName(2, True, vbWednesday), "Thu", "WeekdayName(2, True, vbWednesday)")
Exit Sub
errorHandler:
TestUtil.ReportErrorHandler("verify_testWeekDayName", Err, Error$, Erl)
End Sub