neropay/vendor/norgul/xmpp-php/tests/XmlTest.php
2025-03-06 14:50:41 -05:00

16 lines
455 B
PHP

<?php
use Norgul\Xmpp\Xml\Xml;
use PHPUnit\Framework\TestCase;
class XmlTest extends TestCase
{
use Xml;
public $host = 'www.test.com';
public function testOpeningStream()
{
$expected = "<?xml version='1.0' encoding='UTF-8'?><stream:stream to='www.test.com' xmlns:stream='http://etherx.jabber.org/streams' xmlns='jabber:client' version='1.0'>";
$this->assertEquals($expected, $this->openXmlStream($this->host));
}
}