office-gobmx/basic/qa/vba_tests/weekdayname.vb
Eike Rathke 9df3aa7ea7 Change en_GB calendar StartDayOfWeek to Monday and MinimalDaysInFirstWeek to 4
Inherit day, month and era names from en_US but with proper
values. See https://lh.2xlibre.net/locale/en_GB/
- Week definition (week)
- First day of week (first_weekday)

or

% LC_TIME=en_US locale -k LC_TIME
week-ndays=7
week-1stday=19971130
week-1stweek=1
first_weekday=1
first_workday=2

% LC_TIME=en_GB locale -k LC_TIME
week-ndays=7
week-1stday=19971130
week-1stweek=4
first_weekday=2
first_workday=2

This makes it necessary to adapt basic/qa/vba_tests/weekdayname.vb
because basic/qa/cppunit/test_vba.cxx sets LANGUAGE_ENGLISH_UK

Change-Id: I752bf0e59396f0cbd601beb596c07e77e4e4cfaf
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/115160
Tested-by: Jenkins
Reviewed-by: Eike Rathke <erack@redhat.com>
2021-05-06 01:38:55 +02:00

33 lines
1.3 KiB
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/.
'
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