php-src/ext/intl/tests/calendar_setMinimalDaysInFirstWeek_basic.phpt
Gina Peter Banyard c42e6d62d8
ext/intl: modernize tests (#19392)
This is effectively removing ZPP tests, enabling warnings, and moving INI settings into the INI PHPT block
2025-08-06 23:33:48 +01:00

20 lines
411 B
PHP

--TEST--
IntlCalendar::setMinimalDaysInFirstWeek() basic test
--EXTENSIONS--
intl
--FILE--
<?php
$intlcal = IntlCalendar::createInstance('UTC');
var_dump(
$intlcal->setMinimalDaysInFirstWeek(6),
$intlcal->getMinimalDaysInFirstWeek(),
intlcal_set_minimal_days_in_first_week($intlcal, 5),
$intlcal->getMinimalDaysInFirstWeek()
);
?>
--EXPECT--
bool(true)
int(6)
bool(true)
int(5)