golden hour
/opt/alt/tests/alt-php71-pecl-gender_1.1.0-1.el9/tests
⬆️ Go Up
Upload
File/Folder
Size
Actions
001.phpt
541 B
Del
OK
002.phpt
300 B
Del
OK
003.phpt
303 B
Del
OK
004.phpt
796 B
Del
OK
005.phpt
298 B
Del
OK
006.phpt
612 B
Del
OK
007.phpt
1 KB
Del
OK
008.phpt
500 B
Del
OK
009.phpt
379 B
Del
OK
010.phpt
508 B
Del
OK
011.phpt
1.66 KB
Del
OK
func.inc
1000 B
Del
OK
Edit: 006.phpt
--TEST-- Check determine country --SKIPIF-- <?php if (!extension_loaded("gender")) print "skip"; ?> --FILE-- <?php namespace Gender; include dirname(__FILE__) . "/func.inc"; $ca = array( Gender::GERMANY, Gender::FINLAND, Gender::SERBIA, ); $g = new Gender; foreach($ca as $c) { var_dump($g->country($c)); } ?> DONE --EXPECT-- array(2) { ["country_short"]=> string(1) "D" ["country"]=> string(7) "Germany" } array(2) { ["country_short"]=> string(3) "FIN" ["country"]=> string(7) "Finland" } array(2) { ["country_short"]=> string(3) "SER" ["country"]=> string(6) "Serbia" } DONE
Save