This repository has been archived on 2020-03-30. You can view files and clone it, but cannot push or open issues or pull requests.
ext-collections/tests/001-pair.phpt

11 lines
181 B
PHP

--TEST--
Test Pair.
--FILE--
<?php
$pair = new Pair('foo', 'bar');
if ($pair->first != 'foo' || $pair->second != 'bar') {
echo 'Test for Pair failed.', PHP_EOL;
}
?>
--EXPECT--