Viewing File: /opt/alt/tests/alt-php82-pecl-zmq_1.1.3-1.84f0720.el8/tests/040-cert-clone.phpt

--TEST--
Test a ZMQCert can be cloned.
--SKIPIF--
<?php

	require_once __DIR__ . '/skipif.inc';
	require_once __DIR__ . '/skipif-czmq2.inc';
--FILE--
<?php

$cert = new ZMQCert();
$clonedCert = clone $cert;

var_dump($cert->equals($clonedCert));
--EXPECT--
bool(true)
Back to Directory File Manager
<