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
Plaintext
Raw Normal View History

2018-03-24 04:22:00 +00:00
--TEST--
Test Pair.
--FILE--
<?php
$pair = new Pair('foo', 'bar');
2018-08-28 14:11:09 +00:00
if ($pair->first != 'foo' || $pair->second != 'bar') {
2018-03-24 04:22:00 +00:00
echo 'Test for Pair failed.', PHP_EOL;
2018-08-28 14:11:09 +00:00
}
2018-03-24 04:22:00 +00:00
?>
--EXPECT--